/sysdeps/htl/ |
A D | pthread-functions.h | 48 int __pthread_equal (pthread_t, pthread_t); 50 int __pthread_getschedparam (pthread_t, int *, struct sched_param *); 51 int __pthread_setschedparam (pthread_t, int, 59 pthread_t __pthread_self (void); 104 int (*ptr_pthread_equal) (pthread_t, pthread_t); 106 int (*ptr_pthread_getschedparam) (pthread_t, int *, struct sched_param *); 107 int (*ptr_pthread_setschedparam) (pthread_t, int, 115 pthread_t (*ptr_pthread_self) (void);
|
A D | pt-equal.c | 25 __pthread_equal (pthread_t __t1, pthread_t __t2) in __pthread_equal()
|
A D | pthread.h | 205 extern int pthread_getattr_np (pthread_t __thr, pthread_attr_t *__attr) 212 extern int pthread_create (pthread_t *__restrict __threadp, 223 extern int pthread_join (pthread_t __threadp, void **__status); 253 extern int pthread_detach (pthread_t __threadp); 257 extern int pthread_equal (pthread_t __t1, pthread_t __t2); 262 pthread_equal (pthread_t __t1, pthread_t __t2) in pthread_equal() 271 extern pthread_t pthread_self (void) __THROW; 444 pthread_t __tid) 744 extern int pthread_cancel (pthread_t __thr); 867 extern int pthread_kill (pthread_t __thr, int __signo) __THROW; [all …]
|
A D | pthreadP.h | 64 int __pthread_create (pthread_t *newthread, 69 int __pthread_detach (pthread_t __threadp); 71 int __pthread_join (pthread_t, void **); 83 int __pthread_getattr_np (pthread_t, pthread_attr_t *);
|
A D | pt-setschedprio.c | 23 pthread_setschedprio (pthread_t thread, int prio) in pthread_setschedprio()
|
A D | pt-getcpuclockid.c | 25 pthread_getcpuclockid (pthread_t thread, clockid_t *clock) in pthread_getcpuclockid()
|
A D | pt-setschedparam.c | 23 __pthread_setschedparam (pthread_t thread, int policy, in __pthread_setschedparam()
|
/sysdeps/pthread/ |
A D | tst-join1.c | 29 pthread_t mh = (pthread_t) arg; in tf() 57 pthread_t th; in do_test()
|
A D | tst-basic3.c | 41 if (pthread_join ((pthread_t) a, NULL) != 0) in tf() 57 pthread_t t[N]; in do_test() 58 pthread_t last = pthread_self (); in do_test()
|
A D | tst-pthread-raise-blocked-self.c | 34 static volatile pthread_t signal_thread; 61 pthread_t dummy = xpthread_create (NULL, noop, NULL); in do_test() 64 pthread_t helper = xpthread_create (NULL, waiting_thread, NULL); in do_test()
|
A D | tst-eintr3.c | 46 pthread_t self = pthread_self (); in do_test() 50 pthread_t th = xpthread_create (NULL, tf, NULL); in do_test()
|
A D | tst-exec2.c | 35 pthread_t th = (pthread_t) arg; in tf() 81 pthread_t th; in do_test()
|
A D | tst-pthread_kill-exiting.c | 47 static pthread_t target_thread; 87 pthread_t thr_timeout = xpthread_create (NULL, timeout_thread_function, NULL); in do_test() 89 pthread_t threads[4]; in do_test()
|
A D | tst-join5.c | 44 thread_join (pthread_t thread, void **retval) in thread_join() 73 thread_join ((pthread_t) arg, NULL); in tf1() 88 thread_join ((pthread_t) arg, NULL); in tf2() 101 pthread_t th; in do_test()
|
A D | tst-exec1.c | 35 pthread_t th = (pthread_t) arg; in tf() 80 pthread_t th; in do_test()
|
A D | tst-exit3.c | 30 pthread_t th; in tf() 54 pthread_t th; in do_test()
|
A D | tst-pthread_cancel-select-loop.c | 72 pthread_t thr_timeout = xpthread_create (NULL, timeout_thread_function, NULL); in do_test() 76 pthread_t thr = xpthread_create (NULL, canceled_thread_function, NULL); in do_test()
|
A D | eintr.c | 57 pthread_kill (*(pthread_t *) arg, the_sig); in eintr_source() 70 setup_eintr (int sig, pthread_t *thp) in setup_eintr()
|
A D | tst-fork3.c | 56 pthread_t th2; in tf1() 94 pthread_t th1; in do_test()
|
A D | tst-locale2.c | 12 pthread_t th; in useless()
|
A D | tst-locale1.c | 13 pthread_t th; in useless()
|
A D | tst-rwlock14.c | 38 pthread_t mt = *(pthread_t *) arg; in tf() 57 pthread_t me = pthread_self (); in do_test()
|
A D | tst-create-detached.c | 70 pthread_t thr; in creator_thread() 122 pthread_t threads[creator_threads]; in do_test()
|
/sysdeps/pthread/bits/ |
A D | sigthread.h | 36 extern int pthread_kill (pthread_t __threadid, int __signo) __THROW; 40 extern int pthread_sigqueue (pthread_t __threadid, int __signo,
|
/sysdeps/nptl/ |
A D | pthread.h | 202 extern int pthread_create (pthread_t *__restrict __newthread, 219 extern int pthread_join (pthread_t __th, void **__thread_return); 249 (pthread_t __th, void **__thread_return, 254 (pthread_t __th, void **__thread_return, 269 extern int pthread_detach (pthread_t __th) __THROW; 276 extern int pthread_equal (pthread_t __thread1, pthread_t __thread2) 432 extern int pthread_getattr_np (pthread_t __th, pthread_attr_t *__attr) 446 extern int pthread_getschedparam (pthread_t __target_thread, 528 extern int pthread_cancel (pthread_t __th); 1315 extern int pthread_getcpuclockid (pthread_t __thread_id, [all …]
|