From db52999d8567c628154fcb002cf636bc1c1697d9 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 771059bf..049e68e7 100644 --- a/include/mimalloc/types.h +++ b/include/mimalloc/types.h @@ -295,7 +295,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`)