diff options
author | daan <daanl@outlook.com> | 2022-01-01 16:24:41 -0800 |
---|---|---|
committer | daan <daanl@outlook.com> | 2022-01-01 16:24:41 -0800 |
commit | 3eac4a912c08b523dd03522c8539f50f55765184 (patch) | |
tree | 8381adc7fff7c2a95e6a78724d9988ddcfe5c866 /include/mimalloc.h | |
parent | c4b934c2ae84018f3d5b4b6f736af42ca2727073 (diff) | |
parent | 43e5cd2671585023d425f247b5c39cfa1207866a (diff) |
Merge branch 'dev' into dev-slice
Diffstat (limited to 'include/mimalloc.h')
-rw-r--r-- | include/mimalloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mimalloc.h b/include/mimalloc.h index 0533e73..52a284a 100644 --- a/include/mimalloc.h +++ b/include/mimalloc.h @@ -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; |