aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 29cb1de5826..5cb34b9ed45 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -341,7 +341,12 @@ int dont_register_blocks;
341 341
342struct mem_node 342struct mem_node
343{ 343{
344 struct mem_node *left, *right, *parent; 344 /* Children of this node. These pointers are never NULL. When there
345 is no child, the value is MEM_NIL, which points to a dummy node. */
346 struct mem_node *left, *right;
347
348 /* The parent of this node. In the root node, this is NULL. */
349 struct mem_node *parent;
345 350
346 /* Start and end of allocated region. */ 351 /* Start and end of allocated region. */
347 void *start, *end; 352 void *start, *end;