/nptl/ |
A D | pthread_kill.c | 28 __pthread_kill_implementation (pthread_t threadid, int signo, int no_tid) in __pthread_kill_implementation() argument 30 struct pthread *pd = (struct pthread *) threadid; in __pthread_kill_implementation() 73 __pthread_kill_internal (pthread_t threadid, int signo) in __pthread_kill_internal() argument 78 return __pthread_kill_implementation (threadid, signo, 0); in __pthread_kill_internal() 82 __pthread_kill (pthread_t threadid, int signo) in __pthread_kill() argument 89 return __pthread_kill_internal (threadid, signo); in __pthread_kill() 103 __pthread_kill_esrch (pthread_t threadid, int signo) in __pthread_kill_esrch() argument 108 return __pthread_kill_implementation (threadid, signo, ESRCH); in __pthread_kill_esrch()
|
A D | pthread_timedjoin.c | 23 ___pthread_timedjoin_np64 (pthread_t threadid, void **thread_return, in ___pthread_timedjoin_np64() argument 26 return __pthread_clockjoin_ex (threadid, thread_return, in ___pthread_timedjoin_np64() 37 ___pthread_timedjoin_np (pthread_t threadid, void **thread_return, 43 return __pthread_timedjoin_np64 (threadid, thread_return, &ts64); 46 return __pthread_timedjoin_np64 (threadid, thread_return, NULL);
|
A D | pthread_clockjoin.c | 25 ___pthread_clockjoin_np64 (pthread_t threadid, void **thread_return, in ___pthread_clockjoin_np64() argument 32 return __pthread_clockjoin_ex (threadid, thread_return, in ___pthread_clockjoin_np64() 43 ___pthread_clockjoin_np (pthread_t threadid, void **thread_return, 49 return __pthread_clockjoin_np64 (threadid, thread_return, clockid, 53 return __pthread_clockjoin_np64 (threadid, thread_return, clockid,
|
A D | pthread_tryjoin.c | 22 __pthread_tryjoin_np (pthread_t threadid, void **thread_return) in __pthread_tryjoin_np() argument 25 struct pthread *pd = (struct pthread *) threadid; in __pthread_tryjoin_np() 31 return __pthread_clockjoin_ex (threadid, thread_return, 0 /* Ignored */, in __pthread_tryjoin_np()
|
A D | pthread_join.c | 22 ___pthread_join (pthread_t threadid, void **thread_return) in ___pthread_join() argument 24 return __pthread_clockjoin_ex (threadid, thread_return, 0 /* Ignored */, in ___pthread_join()
|
A D | pthread_getcpuclockid.c | 27 __pthread_getcpuclockid (pthread_t threadid, clockid_t *clockid) in __pthread_getcpuclockid() argument 29 struct pthread *pd = (struct pthread *) threadid; in __pthread_getcpuclockid()
|
A D | pthread_join_common.c | 36 __pthread_clockjoin_ex (pthread_t threadid, void **thread_return, in __pthread_clockjoin_ex() argument 40 struct pthread *pd = (struct pthread *) threadid; in __pthread_clockjoin_ex() 55 LIBC_PROBE (pthread_join, 1, threadid); in __pthread_clockjoin_ex() 133 LIBC_PROBE (pthread_join_ret, 3, threadid, result, pd_result); in __pthread_clockjoin_ex()
|
A D | pthread_getschedparam.c | 25 __pthread_getschedparam (pthread_t threadid, int *policy, in __pthread_getschedparam() argument 28 struct pthread *pd = (struct pthread *) threadid; in __pthread_getschedparam()
|
A D | pthread_setschedparam.c | 26 __pthread_setschedparam (pthread_t threadid, int policy, in __pthread_setschedparam() argument 29 struct pthread *pd = (struct pthread *) threadid; in __pthread_setschedparam()
|
A D | pthread_setschedprio.c | 27 __pthread_setschedprio (pthread_t threadid, int prio) in __pthread_setschedprio() argument 29 struct pthread *pd = (struct pthread *) threadid; in __pthread_setschedprio()
|
A D | pthread_sigqueue.c | 28 __pthread_sigqueue (pthread_t threadid, int signo, const union sigval value) in __pthread_sigqueue() argument 31 struct pthread *pd = (struct pthread *) threadid; in __pthread_sigqueue()
|