We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ea5d71 commit d681803Copy full SHA for d681803
include/mimalloc-stats.h
@@ -93,8 +93,8 @@ typedef struct mi_stats_s
93
mi_stat_counter_t _stat_counter_reserved[4];
94
95
// size segregated statistics
96
- mi_stat_count_t malloc_bins[MI_BIN_HUGE+1]; // allocation per size bin
97
- mi_stat_count_t page_bins[MI_BIN_HUGE+1]; // pages allocated per size bin
+ mi_stat_count_t malloc_bins[MI_BIN_COUNT]; // allocation per size bin
+ mi_stat_count_t page_bins[MI_BIN_COUNT]; // pages allocated per size bin
98
mi_stat_count_t chunk_bins[MI_CBIN_COUNT]; // chunks per page sizes
99
} mi_stats_t;
100
0 commit comments