Symbol: pthread
include/pthread.h
112
typedef struct pthread *pthread_t;
include/pthread.h
290
int pthread_getschedparam(pthread_t pthread, int *,
include/pthread.h
95
struct pthread;
lib/libc/include/thread_private.h
109
void (*tc_thread_release)(struct pthread *);
lib/libc/include/thread_private.h
294
TAILQ_HEAD(pthread_queue, pthread);
lib/libc/include/thread_private.h
437
LIST_ENTRY(pthread) threads;
lib/libc/include/thread_private.h
438
TAILQ_ENTRY(pthread) waiting;
lib/libc/include/thread_private.h
84
struct pthread;
lib/libc/thread/rthread.c
42
struct pthread _initial_thread = {
lib/libc/thread/rthread.h
28
extern struct pthread _initial_thread;
lib/librthread/rthread.c
76
static struct pthread _initial_thread;
lib/librthread/rthread.h
94
extern LIST_HEAD(listhead, pthread) _thread_list;
regress/lib/libc/stdio_threading/include/local.h
51
pthread_t self, pthread[THREAD_COUNT];
regress/lib/libc/stdio_threading/include/local.h
63
if ((r = pthread_create(&pthread[i], NULL, thread, arg))) {
regress/lib/libc/stdio_threading/include/local.h
65
pthread[i] = self;
regress/lib/libc/stdio_threading/include/local.h
79
if (! pthread_equal(pthread[i], self) &&
regress/lib/libc/stdio_threading/include/local.h
80
(r = pthread_join(pthread[i], NULL)))
regress/lib/libpthread/sigdeliver/sigdeliver.c
46
pthread_t pthread;
regress/lib/libpthread/sigdeliver/sigdeliver.c
53
CHECKr(pthread_create(&pthread, NULL, do_nothing, NULL));
regress/lib/libpthread/sigdeliver/sigdeliver.c
62
CHECKr(pthread_kill(pthread, SIGUSR1));
regress/lib/libpthread/sigdeliver/sigdeliver.c
64
CHECKr(pthread_join(pthread, NULL));
regress/sys/kern/signal/sig-stop2/sig-stop2.c
61
pthread_t self, pthread[THREAD_COUNT];
regress/sys/kern/signal/sig-stop2/sig-stop2.c
74
if ((r = pthread_create(&pthread[i], NULL, thread, NULL))) {
regress/sys/kern/signal/sig-stop2/sig-stop2.c
76
pthread[i] = self;
regress/sys/kern/signal/sig-stop2/sig-stop2.c
83
if (!pthread_equal(pthread[i], self) &&
regress/sys/kern/signal/sig-stop2/sig-stop2.c
84
(r = pthread_join(pthread[i], NULL)))
regress/sys/kern/signal/sig-stop3/sig-stop3.c
46
pthread_t self, pthread[THREAD_COUNT];
regress/sys/kern/signal/sig-stop3/sig-stop3.c
51
if ((r = pthread_create(&pthread[i], NULL, thread, NULL))) {
regress/sys/kern/signal/sig-stop3/sig-stop3.c
53
pthread[i] = self;