From 287b67512a0ba99f7fee01f927cd92c97186548b Mon Sep 17 00:00:00 2001 From: XnLogicaL <140826629+XnLogicaL@users.noreply.github.com> Date: Mon, 22 Dec 2025 18:38:56 +0300 Subject: [PATCH] Update size bins in mimalloc-stats.h --- include/mimalloc-stats.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/mimalloc-stats.h b/include/mimalloc-stats.h index 44c4886f8..6dea08cf0 100644 --- a/include/mimalloc-stats.h +++ b/include/mimalloc-stats.h @@ -81,8 +81,8 @@ typedef struct mi_stats_s mi_stat_counter_t _stat_counter_reserved[4]; // size segregated statistics - mi_stat_count_t malloc_bins[MI_BIN_HUGE+1]; // allocation per size bin - mi_stat_count_t page_bins[MI_BIN_HUGE+1]; // pages allocated per size bin + mi_stat_count_t malloc_bins[MI_BIN_FULL+1]; // allocation per size bin + mi_stat_count_t page_bins[MI_BIN_FULL+1]; // pages allocated per size bin } mi_stats_t; #undef MI_STAT_COUNT