diff options
author | Daan Leijen <daan@microsoft.com> | 2022-04-09 14:33:20 -0700 |
---|---|---|
committer | Daan Leijen <daan@microsoft.com> | 2022-04-09 14:33:20 -0700 |
commit | 6c91c75b140f650845e918005979a05ac0da7d5e (patch) | |
tree | df2619fd9da9faecc0b04fb794532f3404c0a4af /include/mimalloc-types.h | |
parent | 016b2ad5352de399af167a1acb6042cee31f8fbe (diff) |
remove thread local segment cache
Diffstat (limited to 'include/mimalloc-types.h')
-rw-r--r-- | include/mimalloc-types.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/mimalloc-types.h b/include/mimalloc-types.h index be3cf50..a3fad92 100644 --- a/include/mimalloc-types.h +++ b/include/mimalloc-types.h @@ -521,9 +521,6 @@ typedef struct mi_segments_tld_s { size_t peak_count; // peak number of segments size_t current_size; // current size of all segments size_t peak_size; // peak size of all segments - size_t cache_count; // number of segments in the cache - size_t cache_size; // total size of all segments in the cache - mi_segment_t* cache; // (small) cache of segments mi_stats_t* stats; // points to tld stats mi_os_tld_t* os; // points to os stats } mi_segments_tld_t; |