mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-05-16 01:46:23 +03:00
Extract out per event postponed wait time fetching
This commit is contained in:
parent
f72014d097
commit
abd4674931
7 changed files with 37 additions and 5 deletions
|
|
@ -561,6 +561,11 @@ prof_sample_new_event_wait(tsd_t *tsd) {
|
|||
#endif
|
||||
}
|
||||
|
||||
uint64_t
|
||||
prof_sample_postponed_event_wait(tsd_t *tsd) {
|
||||
return TE_MIN_START_WAIT;
|
||||
}
|
||||
|
||||
int
|
||||
prof_getpid(void) {
|
||||
#ifdef _WIN32
|
||||
|
|
|
|||
|
|
@ -1503,6 +1503,11 @@ stats_interval_new_event_wait(tsd_t *tsd) {
|
|||
return stats_interval_accum_batch;
|
||||
}
|
||||
|
||||
uint64_t
|
||||
stats_interval_postponed_event_wait(tsd_t *tsd) {
|
||||
return TE_MIN_START_WAIT;
|
||||
}
|
||||
|
||||
bool
|
||||
stats_boot(void) {
|
||||
uint64_t stats_interval;
|
||||
|
|
|
|||
10
src/tcache.c
10
src/tcache.c
|
|
@ -45,11 +45,21 @@ tcache_gc_new_event_wait(tsd_t *tsd) {
|
|||
return TCACHE_GC_INCR_BYTES;
|
||||
}
|
||||
|
||||
uint64_t
|
||||
tcache_gc_postponed_event_wait(tsd_t *tsd) {
|
||||
return TE_MIN_START_WAIT;
|
||||
}
|
||||
|
||||
uint64_t
|
||||
tcache_gc_dalloc_new_event_wait(tsd_t *tsd) {
|
||||
return TCACHE_GC_INCR_BYTES;
|
||||
}
|
||||
|
||||
uint64_t
|
||||
tcache_gc_dalloc_postponed_event_wait(tsd_t *tsd) {
|
||||
return TE_MIN_START_WAIT;
|
||||
}
|
||||
|
||||
void
|
||||
tcache_event_hard(tsd_t *tsd, tcache_slow_t *tcache_slow, tcache_t *tcache) {
|
||||
szind_t binind = tcache_slow->next_gc_bin;
|
||||
|
|
|
|||
|
|
@ -5,12 +5,19 @@
|
|||
#include "jemalloc/internal/thread_event.h"
|
||||
|
||||
/*
|
||||
* Signatures for functions computing new event wait time. The functions
|
||||
* should be defined by the modules owning each event. The signatures here are
|
||||
* used to verify that the definitions are in the right shape.
|
||||
* Signatures for functions computing new / postponed event wait time. New
|
||||
* event wait time is the time till the next event if an event is currently
|
||||
* being triggered; postponed event wait time is the time till the next event
|
||||
* if an event should be triggered but needs to be postponed, e.g. when the TSD
|
||||
* is not nominal or during reentrancy.
|
||||
*
|
||||
* These event wait time computation functions should be defined by the modules
|
||||
* owning each event. The signatures here are used to verify that the
|
||||
* definitions follow the right format.
|
||||
*/
|
||||
#define E(event, condition_unused, is_alloc_event_unused) \
|
||||
uint64_t event##_new_event_wait(tsd_t *tsd);
|
||||
uint64_t event##_new_event_wait(tsd_t *tsd); \
|
||||
uint64_t event##_postponed_event_wait(tsd_t *tsd);
|
||||
|
||||
ITERATE_OVER_ALL_EVENTS
|
||||
#undef E
|
||||
|
|
@ -256,7 +263,7 @@ te_event_trigger(tsd_t *tsd, te_ctx_t *ctx) {
|
|||
if (event_wait > accumbytes) { \
|
||||
event_wait -= accumbytes; \
|
||||
} else if (!allow_event_trigger) { \
|
||||
event_wait = TE_MIN_START_WAIT; \
|
||||
event_wait = event##_postponed_event_wait(tsd); \
|
||||
} else { \
|
||||
is_##event##_triggered = true; \
|
||||
event_wait = event##_new_event_wait(tsd); \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue