Searched refs:thread (Results 1 – 12 of 12) sorted by relevance
| /redis-3.2.3/src/ |
| H A D | bio.c | 94 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 D | ChangeLog | 119 "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 D | INSTALL | 144 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 D | configure.ac | 851 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 D | configure | 1418 --disable-tcache Disable per thread caches 1429 --disable-tls Disable thread-local storage (__thread keyword)
|
| /redis-3.2.3/deps/jemalloc/src/ |
| H A D | mutex.c | 52 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 D | tsd.c | 172 if (iter->thread == self) { in tsd_init_check_recursion() 179 block->thread = self; in tsd_init_check_recursion()
|
| H A D | ctl.c | 477 {NAME("thread"), CHILD(named, thread)},
|
| /redis-3.2.3/deps/jemalloc/include/jemalloc/internal/ |
| H A D | jemalloc_internal_defs.h.in | 83 * _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 D | tsd.h | 524 pthread_t thread; member
|
| H A D | jemalloc_internal.h.in | 760 /* Choose an arena based on a per-thread value. */
|
| /redis-3.2.3/deps/jemalloc/bin/ |
| H A D | jeprof.in | 571 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 …]
|