diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/jemalloc/internal/stats_structs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/jemalloc/internal/stats_structs.h b/include/jemalloc/internal/stats_structs.h index aaa0bf4..32ef611 100644 --- a/include/jemalloc/internal/stats_structs.h +++ b/include/jemalloc/internal/stats_structs.h @@ -100,6 +100,9 @@ struct arena_stats_s { uint64_t ndalloc_large; uint64_t nrequests_large; + /* Number of bytes cached in tcache associated with this arena. */ + size_t tcache_bytes; + /* One element for each large size class. */ malloc_large_stats_t lstats[NSIZES - NBINS]; }; |