Searched refs:thread (Results 1 – 14 of 14) sorted by relevance
/nptl/ |
A D | pthread_getattr_np.c | 43 lll_lock (thread->lock, LLL_PRIVATE); in __pthread_getattr_np() 47 memcpy (&iattr->schedparam, &thread->schedparam, in __pthread_getattr_np() 49 iattr->schedpolicy = thread->schedpolicy; in __pthread_getattr_np() 52 iattr->flags = thread->flags; in __pthread_getattr_np() 55 if (IS_DETACHED (thread)) in __pthread_getattr_np() 59 iattr->guardsize = thread->reported_guardsize; in __pthread_getattr_np() 62 if (__glibc_likely (thread->stackblock != NULL)) in __pthread_getattr_np() 66 iattr->stacksize = thread->stackblock_size - thread->guardsize; in __pthread_getattr_np() 68 iattr->stackaddr = (char *) thread->stackblock in __pthread_getattr_np() 69 + thread->stackblock_size; in __pthread_getattr_np() [all …]
|
A D | tst-thread-affinity-pthread2.c | 30 pthread_t thread; member 43 (task->thread, task->size, task->set); in affinity_access_thread() 46 (task->thread, task->size, task->set); in affinity_access_thread() 55 .thread = pthread_self (), in run_affinity_access_thread()
|
A D | tst-stack4.c | 78 pthread_t thread[DSO_EXEC_THREADS]; in dso_process() local 84 ret = pthread_create (&thread[i], NULL, dso_invoke, (void *) fun_vec); in dso_process() 96 ret = pthread_join (thread[i], NULL); in dso_process() 119 pthread_t thread[DSO_OPEN_THREADS]; in do_test() local 131 ret = pthread_create (&thread[i], NULL, dso_process, in do_test() 145 ret = pthread_join (thread[i], NULL); in do_test()
|
A D | tst-setgroups.c | 49 pthread_t thread = xpthread_create (NULL, start_routine, NULL); in do_test() local 74 xpthread_join (thread); in do_test()
|
A D | tst-pthread-timedlock-lockloop.c | 106 pthread_t thread; in run_test_set() local 111 thread = xpthread_create (NULL, worker, NULL); in run_test_set() 114 pthread_kill (thread, SIGUSR1); in run_test_set() 116 xpthread_join (thread); in run_test_set()
|
A D | TODO-kernel | 19 - the scheduler should be thread group-aware, i.e., it has to give time to 20 the thread group not proportional to the number of threads.
|
A D | test-mutex-printers.c | 108 pthread_t thread; in test_locking_state_robust() local 110 if (pthread_create (&thread, NULL, thread_func, mutex) == 0 /* Create. */ in test_locking_state_robust() 111 && pthread_join (thread, NULL) == 0 in test_locking_state_robust()
|
A D | DESIGN-systemtap-probes.txt | 9 arg1 = pointer (pthread_t*) to thread 13 pthread_start - probe for actual thread creation 14 arg1 = struct pthread (members include thread ID, process ID) 18 arg1 = thread ID 20 arg1 = thread ID
|
A D | tst-setuid2.c | 123 pthread_t thread; in do_test() local 124 int ret = pthread_create (&thread, NULL, thread_func, NULL); in do_test()
|
A D | test-mutex-printers.py | 71 continue_cmd(thread=child)
|
A D | TODO | 22 - sem_post should only wake one thread and only when the state of
|
A D | Makefile | 269 CFLAGS-tst-thread-exit-clobber.o = -std=gnu++11 270 LDLIBS-tst-thread-exit-clobber = -lstdc++ 303 tst-thread-exit-clobber tst-minstack-cancel tst-minstack-exit \ 306 tst-thread-affinity-pthread \ 307 tst-thread-affinity-pthread2 \ 308 tst-thread-affinity-sched \ 315 tst-thread-setspecific 463 tst-thread-exit-clobber tst-minstack-throw
|
A D | tst-thread_local1.cc | 173 std::thread thr{[func] {func (nullptr);}}; in do_test()
|
A D | Versions | 207 # C11 thread symbols.
|
Completed in 12 milliseconds