3 // Dynamic Memory (i.e., heap) Manager
7 #define HEAP_INIT_SIZE 4096
17 dmm_init(heap_context_t* heap);
20 lxsbrk(heap_context_t* heap, void* addr);
22 lxbrk(heap_context_t* heap, size_t size);
25 lx_malloc(heap_context_t* heap, size_t size);
30 #endif /* __LUNAIX_DMM_H */