Home
last modified time | relevance | path

Searched refs:thread (Results 1 – 12 of 12) sorted by relevance

/redis-3.2.3/src/
H A Dbio.c94 pthread_t thread; in bioInit() local
118 if (pthread_create(&thread,&attr,bioProcessBackgroundJobs,arg) != 0) { in bioInit()
122 bio_threads[j] = thread; in bioInit()
/redis-3.2.3/deps/jemalloc/
H A DChangeLog119 "prof.lg_sample", "thread.prof.name", "thread.prof.active",
121 "thread.prof.active" mallctls.
484 - Add the "thread.tcache.enabled" mallctl.
625 - Fix a "thread.arena" mallctl bug.
626 - Fix a thread cache stats merging bug.
631 - Fix "thread.{de,}allocatedp" mallctl for OS X.
640 - Fix a "thread.arena" mallctl bug.
650 - Add the "thread.[de]allocatedp" mallctl's.
687 the "thread.arena" mallctl.
697 "thread.allocated" and "thread.deallocated" mallctls.
[all …]
H A DINSTALL144 Disable thread-specific caches for small objects. Objects are cached and
181 thread-specific caching is disabled.
184 Disable thread-local storage (TLS), which allows for fast access to
185 thread-local variables via the __thread keyword. If TLS is available,
H A Dconfigure.ac851 dnl Enable thread-specific caching by default.
853 [AS_HELP_STRING([--disable-tcache], [Disable per thread caches])],
1221 dnl thread exit, in order to avoid pthreads library recursion during
1274 [AS_HELP_STRING([--disable-tls], [Disable thread-local storage (__thread keyword)])],
H A Dconfigure1418 --disable-tcache Disable per thread caches
1429 --disable-tls Disable thread-local storage (__thread keyword)
/redis-3.2.3/deps/jemalloc/src/
H A Dmutex.c52 pthread_create(pthread_t *__restrict thread, in pthread_create() argument
60 return (pthread_create_fptr(thread, attr, start_routine, arg)); in pthread_create()
H A Dtsd.c172 if (iter->thread == self) { in tsd_init_check_recursion()
179 block->thread = self; in tsd_init_check_recursion()
H A Dctl.c477 {NAME("thread"), CHILD(named, thread)},
/redis-3.2.3/deps/jemalloc/include/jemalloc/internal/
H A Djemalloc_internal_defs.h.in83 * _malloc_thread_cleanup() exists, use it as the basis for thread cleanup in
133 * JEMALLOC_TCACHE enables a thread-specific caching layer for small objects.
157 /* Support lazy locking (avoid locking unless a second thread is launched). */
H A Dtsd.h524 pthread_t thread; member
H A Djemalloc_internal.h.in760 /* Choose an arena based on a per-thread value. */
/redis-3.2.3/deps/jemalloc/bin/
H A Djeprof.in571 my ($profile, $symbols, $libs, $thread) = @_;
611 (defined($thread) ? " (t$thread)" : ""),
711 foreach my $thread (sort { $a <=> $b } keys(%{$data->{threads}})) {
713 ($main::opt_thread eq '*' || $main::opt_thread == $thread)) {
714 my $thread_profile = $data->{threads}{$thread};
715 FilterAndPrint($thread_profile, $symbols, $libs, $thread);
4171 my $thread = $2;
4175 if ($thread eq "*") {
4178 if (!exists($thread_profiles->{$thread})) {
4179 $thread_profiles->{$thread} = {};
[all …]