summaryrefslogtreecommitdiffstats
path: root/heap.c
diff options
context:
space:
mode:
Diffstat (limited to 'heap.c')
-rw-r--r--heap.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/heap.c b/heap.c
index dc739fd..a57a45d 100644
--- a/heap.c
+++ b/heap.c
@@ -70,6 +70,12 @@ heap_create(struct heap *heap, uintptr_t at, size_t len)
return 0;
}
+void
+heap_resize(struct heap *heap, size_t newsize)
+{
+ heap->size = newsize;
+}
+
struct bucket*
__heap_bucket_findbest(struct heap *heap, size_t size)
{