Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/mimalloc-stats.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down