diff options
Diffstat (limited to 'src/vlib/main.h')
-rw-r--r-- | src/vlib/main.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/vlib/main.h b/src/vlib/main.h index 16e4120067d..8b6f9478619 100644 --- a/src/vlib/main.h +++ b/src/vlib/main.h @@ -100,8 +100,13 @@ typedef struct vlib_main_t /* Name for e.g. syslog. */ char *name; - /* Start and size of CLIB heap. */ + /* Start of the heap. */ void *heap_base; + + /* Truncated version, to create frame indices */ + void *heap_aligned_base; + + /* Size of the heap */ uword heap_size; /* Pool of buffer free lists. */ |