From 9da8788daeb43c3cb796ac8d6cbfef7574211a97 Mon Sep 17 00:00:00 2001 From: Michael Clark Date: Wed, 19 Jan 2022 08:03:39 +1300 Subject: [PATCH] mimalloc-types: amend comment adding medium to list of page kinds --- 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 c9f399df..d8985385 100644 --- a/include/mimalloc-types.h +++ b/include/mimalloc-types.h @@ -313,7 +313,7 @@ typedef struct mi_segment_s { // layout like this to optimize access in `mi_free` size_t page_shift; // `1 << page_shift` == the page sizes == `page->block_size * page->reserved` (unless the first page, then `-segment_info_size`). _Atomic(mi_threadid_t) thread_id; // unique id of the thread owning this segment - mi_page_kind_t page_kind; // kind of pages: small, large, or huge + mi_page_kind_t page_kind; // kind of pages: small, medium, large, or huge mi_page_t pages[1]; // up to `MI_SMALL_PAGES_PER_SEGMENT` pages } mi_segment_t;