mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-05-05 15:09:31 +03:00
Tweak documentation for mi_heap_area_t::used.
For microsoft/mimalloc#503.
This commit is contained in:
parent
0560fc27c0
commit
ff3bb5ce7b
1 changed files with 1 additions and 1 deletions
|
@ -253,7 +253,7 @@ typedef struct mi_heap_area_s {
|
||||||
void* blocks; // start of the area containing heap blocks
|
void* blocks; // start of the area containing heap blocks
|
||||||
size_t reserved; // bytes reserved for this area (virtual)
|
size_t reserved; // bytes reserved for this area (virtual)
|
||||||
size_t committed; // current available bytes for this area
|
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
|
size_t block_size; // size in bytes of each block
|
||||||
} mi_heap_area_t;
|
} mi_heap_area_t;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue