From c520901069eb525bcb38ef83e560c0bfbfe3e855 Mon Sep 17 00:00:00 2001 From: daan Date: Sun, 14 Nov 2021 12:10:07 -0800 Subject: [PATCH] fix slice count comment --- 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 4d703f13..ce84aa97 100644 --- a/include/mimalloc-types.h +++ b/include/mimalloc-types.h @@ -141,7 +141,7 @@ typedef int32_t mi_ssize_t; #define MI_SEGMENT_ALIGN MI_SEGMENT_SIZE #define MI_SEGMENT_MASK (MI_SEGMENT_SIZE - 1) #define MI_SEGMENT_SLICE_SIZE (MI_ZU(1)<< MI_SEGMENT_SLICE_SHIFT) -#define MI_SLICES_PER_SEGMENT (MI_SEGMENT_SIZE / MI_SEGMENT_SLICE_SIZE) // 128 +#define MI_SLICES_PER_SEGMENT (MI_SEGMENT_SIZE / MI_SEGMENT_SLICE_SIZE) // 1024 #define MI_SMALL_PAGE_SIZE (MI_ZU(1)<