summaryrefslogtreecommitdiffstats
path: root/include/jemalloc/internal/stats_tsd.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/jemalloc/internal/stats_tsd.h')
-rw-r--r--include/jemalloc/internal/stats_tsd.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/jemalloc/internal/stats_tsd.h b/include/jemalloc/internal/stats_tsd.h
new file mode 100644
index 0000000..d0c3bbe
--- /dev/null
+++ b/include/jemalloc/internal/stats_tsd.h
@@ -0,0 +1,12 @@
+#ifndef JEMALLOC_INTERNAL_STATS_TSD_H
+#define JEMALLOC_INTERNAL_STATS_TSD_H
+
+typedef struct tcache_bin_stats_s {
+ /*
+ * Number of allocation requests that corresponded to the size of this
+ * bin.
+ */
+ uint64_t nrequests;
+} tcache_bin_stats_t;
+
+#endif /* JEMALLOC_INTERNAL_STATS_TSD_H */