Merge branch 'dev' into dev-slice

This commit is contained in:
daan 2022-01-01 16:24:41 -08:00
commit 3eac4a912c
2 changed files with 69 additions and 55 deletions

View file

@ -254,7 +254,7 @@ typedef struct mi_heap_area_s {
void* blocks; // start of the area containing heap blocks
size_t reserved; // bytes reserved for this area (virtual)
size_t committed; // current available bytes for this area
size_t used; // bytes in use by allocated blocks
size_t used; // number of allocated blocks
size_t block_size; // size in bytes of each block
} mi_heap_area_t;