Merge pull request #504 from res2k/tweak-stats-doc

Tweak documentation for mi_heap_area_t::used.
This commit is contained in:
Daan 2021-12-20 17:44:52 -08:00 committed by GitHub
commit 6ead2840ec
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

@ -254,7 +254,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;