summaryrefslogtreecommitdiffstats
path: root/deps/jemalloc/src/counter.c
blob: 8f1ae3af45edc869fc2359cc50ad881cfecc8358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include "jemalloc/internal/jemalloc_preamble.h"
#include "jemalloc/internal/jemalloc_internal_includes.h"

#include "jemalloc/internal/counter.h"

bool
counter_accum_init(counter_accum_t *counter, uint64_t interval) {
	if (LOCKEDINT_MTX_INIT(counter->mtx, "counter_accum",
	    WITNESS_RANK_COUNTER_ACCUM, malloc_mutex_rank_exclusive)) {
		return true;
	}
	locked_init_u64_unsynchronized(&counter->accumbytes, 0);
	counter->interval = interval;
	return false;
}

void
counter_prefork(tsdn_t *tsdn, counter_accum_t *counter) {
	LOCKEDINT_MTX_PREFORK(tsdn, counter->mtx);
}

void
counter_postfork_parent(tsdn_t *tsdn, counter_accum_t *counter) {
	LOCKEDINT_MTX_POSTFORK_PARENT(tsdn, counter->mtx);
}

void
counter_postfork_child(tsdn_t *tsdn, counter_accum_t *counter) {
	LOCKEDINT_MTX_POSTFORK_CHILD(tsdn, counter->mtx);
}