Home
last modified time | relevance | path

Searched refs:background_thread (Results 1 – 8 of 8) sorted by relevance

/f-stack/app/redis-5.0.5/deps/jemalloc/
H A D.travis.yml31 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--with-malloc-conf=background_thread:true" …
61 …g CXX=clang++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--with-malloc-conf=background_thread:true" EXTRA_…
99 …c CXX=g++ COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="--with-malloc-conf=background_thread:true" EXTRA_…
115 …OMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-debug --with-malloc-conf=background_thread:true" EXTRA_…
125 …COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-prof --with-malloc-conf=background_thread:true" EXTRA_…
133 …MPILER_FLAGS="" CONFIGURE_FLAGS="--disable-stats --with-malloc-conf=background_thread:true" EXTRA_…
139 … COMPILER_FLAGS="" CONFIGURE_FLAGS="--with-malloc-conf=tcache:false,background_thread:true" EXTRA_…
143 …+ COMPILER_FLAGS="" CONFIGURE_FLAGS="--with-malloc-conf=dss:primary,background_thread:true" EXTRA_…
145 …ER_FLAGS="" CONFIGURE_FLAGS="--with-malloc-conf=percpu_arena:percpu,background_thread:true" EXTRA_…
H A DTUNING.md16 * [background_thread](http://jemalloc.net/jemalloc.3.html#background_thread)
23 Suggested: `background_thread:true` when jemalloc managed threads can be
73 `background_thread:true,metadata_thp:auto` combined with relaxed decay time
79 `background_thread:true` combined with shorter decay time (decreased
H A DMakefile.in94 $(srcroot)src/background_thread.c \
164 $(srcroot)test/unit/background_thread.c \
H A DChangeLog202 + background_thread
206 + opt.background_thread
218 + stats.background_thread.{num_threads,num_runs,run_interval}
219 + stats.mutexes.{ctl,background_thread,prof,reset}.
/f-stack/app/redis-5.0.5/deps/jemalloc/include/jemalloc/internal/
H A Dmutex_prof.h9 OP(background_thread) \
H A Dctl.h56 background_thread_stats_t background_thread; member
/f-stack/app/redis-5.0.5/deps/jemalloc/src/
H A Dctl.c59 CTL_PROTO(background_thread)
542 {NAME("background_thread"), CTL(background_thread)},
916 background_thread_stats_t *stats = &ctl_stats->background_thread; in ctl_background_thread_stats_read()
2647 ctl_stats->background_thread.num_threads, size_t) in CTL_RO_NL_CGEN()
2649 ctl_stats->background_thread.num_runs, uint64_t) in CTL_RO_NL_CGEN()
2651 nstime_ns(&ctl_stats->background_thread.run_interval), uint64_t) in CTL_RO_NL_CGEN()
/f-stack/app/redis-5.0.5/deps/jemalloc/test/unit/
H A Dmallctl.c166 TEST_MALLCTL_OPT(bool, background_thread, always); in TEST_BEGIN()