summaryrefslogtreecommitdiffstats
path: root/byterun/memory.h
diff options
context:
space:
mode:
Diffstat (limited to 'byterun/memory.h')
-rw-r--r--byterun/memory.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/byterun/memory.h b/byterun/memory.h
index c2866a1f7..007290660 100644
--- a/byterun/memory.h
+++ b/byterun/memory.h
@@ -32,6 +32,9 @@ value check_urgent_gc (value);
void * stat_alloc (asize_t); /* Size in bytes. */
void stat_free (void *);
void * stat_resize (void *, asize_t); /* Size in bytes. */
+header_t *alloc_for_heap (asize_t request); /* Size in bytes. */
+int add_to_heap (header_t *mem);
+color_t allocation_color (void *hp);
/* void shrink_heap (char *); Only used in compact.c */