mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-27 11:07:33 +03:00
Push event handlers to constituent modules
This commit is contained in:
parent
381c97caa4
commit
b06dfb9ccc
8 changed files with 78 additions and 57 deletions
25
src/prof.c
25
src/prof.c
|
|
@ -50,7 +50,7 @@ bool opt_prof_accum = false;
|
|||
char opt_prof_prefix[PROF_DUMP_FILENAME_LEN];
|
||||
bool opt_prof_experimental_use_sys_thread_name = false;
|
||||
|
||||
/* Accessed via prof_idump_accum(). */
|
||||
/* Accessed via prof_sample_event_handler(). */
|
||||
static counter_accum_t prof_idump_accumulated;
|
||||
|
||||
/*
|
||||
|
|
@ -574,6 +574,18 @@ prof_sample_postponed_event_wait(tsd_t *tsd) {
|
|||
return prof_sample_new_event_wait(tsd);
|
||||
}
|
||||
|
||||
void
|
||||
prof_sample_event_handler(tsd_t *tsd, uint64_t elapsed) {
|
||||
cassert(config_prof);
|
||||
assert(elapsed > 0 && elapsed != TE_INVALID_ELAPSED);
|
||||
if (prof_interval == 0 || !prof_active_get_unlocked()) {
|
||||
return;
|
||||
}
|
||||
if (counter_accum(tsd_tsdn(tsd), &prof_idump_accumulated, elapsed)) {
|
||||
prof_idump(tsd_tsdn(tsd));
|
||||
}
|
||||
}
|
||||
|
||||
int
|
||||
prof_getpid(void) {
|
||||
#ifdef _WIN32
|
||||
|
|
@ -658,17 +670,6 @@ prof_idump_accum_init(void) {
|
|||
return counter_accum_init(&prof_idump_accumulated, prof_interval);
|
||||
}
|
||||
|
||||
bool
|
||||
prof_idump_accum(tsdn_t *tsdn, uint64_t accumbytes) {
|
||||
cassert(config_prof);
|
||||
|
||||
if (prof_interval == 0 || !prof_active_get_unlocked()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return counter_accum(tsdn, &prof_idump_accumulated, accumbytes);
|
||||
}
|
||||
|
||||
bool
|
||||
prof_dump_prefix_set(tsdn_t *tsdn, const char *prefix) {
|
||||
cassert(config_prof);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue