From 1d2f003a4edc322089a08eeea148aa7627f3900c Mon Sep 17 00:00:00 2001 From: Daan Date: Fri, 8 Mar 2024 09:01:26 -0800 Subject: [PATCH] update used block comment (issue #861) --- include/mimalloc/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mimalloc/types.h b/include/mimalloc/types.h index 450e0b4d..9d9fbb1c 100644 --- a/include/mimalloc/types.h +++ b/include/mimalloc/types.h @@ -303,7 +303,7 @@ typedef struct mi_page_s { uint8_t retire_expire : 7; // expiration count for retired blocks mi_block_t* free; // list of available free blocks (`malloc` allocates from this list) - uint32_t used; // number of blocks in use (including blocks in `local_free` and `thread_free`) + uint32_t used; // number of blocks in use (including blocks in `thread_free`) uint32_t xblock_size; // size available in each block (always `>0`) mi_block_t* local_free; // list of deferred free blocks by this thread (migrates to `free`)