summaryrefslogtreecommitdiff
path: root/deps/jemalloc/include/jemalloc/internal/prof_stats.h
blob: 7954e82de7962f75aa02d00f0b0de74b81dc4407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef JEMALLOC_INTERNAL_PROF_STATS_H
#define JEMALLOC_INTERNAL_PROF_STATS_H

typedef struct prof_stats_s prof_stats_t;
struct prof_stats_s {
	uint64_t req_sum;
	uint64_t count;
};

extern malloc_mutex_t prof_stats_mtx;

void prof_stats_inc(tsd_t *tsd, szind_t ind, size_t size);
void prof_stats_dec(tsd_t *tsd, szind_t ind, size_t size);
void prof_stats_get_live(tsd_t *tsd, szind_t ind, prof_stats_t *stats);
void prof_stats_get_accum(tsd_t *tsd, szind_t ind, prof_stats_t *stats);

#endif /* JEMALLOC_INTERNAL_PROF_STATS_H */