Symbol: pthread_thread
headers/private/libroot/pthread_private.h
88
void __pthread_key_call_destructors(pthread_thread *thread);
headers/private/libroot/pthread_private.h
90
pthread_thread *__allocate_pthread(void* (*entry)(void*), void *data);
headers/private/libroot/pthread_private.h
91
void __init_pthread(pthread_thread* thread, void* (*entry)(void*), void* data);
src/system/libroot/os/thread.c
107
pthread_thread* thread;
src/system/libroot/os/thread.c
39
pthread_thread* thread = (pthread_thread*)_thread;
src/system/libroot/posix/pthread/pthread.cpp
181
pthread_thread* thread = __allocate_pthread(startRoutine, arg);
src/system/libroot/posix/pthread/pthread.cpp
211
pthread_thread* thread = get_user_thread()->pthread;
src/system/libroot/posix/pthread/pthread.cpp
37
static pthread_thread sMainThread;
src/system/libroot/posix/pthread/pthread.cpp
44
pthread_thread* thread = (pthread_thread*)_thread;
src/system/libroot/posix/pthread/pthread.cpp
59
pthread_thread* thread = pthread_self();
src/system/libroot/posix/pthread/pthread.cpp
78
pthread_thread*
src/system/libroot/posix/pthread/pthread.cpp
81
pthread_thread* thread = (pthread_thread*)malloc(sizeof(pthread_thread));
src/system/libroot/posix/pthread/pthread.cpp
92
__init_pthread(pthread_thread* thread, void* (*entry)(void*), void* data)
src/system/libroot/posix/pthread/pthread_cancel.cpp
126
pthread_thread* thread = pthread_self();
src/system/libroot/posix/pthread/pthread_cancel.cpp
69
pthread_thread* thread = pthread_self();
src/system/libroot/posix/pthread/pthread_cancel.cpp
97
pthread_thread* thread = pthread_self();
src/system/libroot/posix/pthread/pthread_cleanup.cpp
13
pthread_thread* thread = pthread_self();
src/system/libroot/posix/pthread/pthread_cleanup.cpp
25
pthread_thread* thread = pthread_self();
src/system/libroot/posix/pthread/pthread_key.cpp
131
pthread_thread* thread = pthread_self();
src/system/libroot/posix/pthread/pthread_key.cpp
43
get_key_value(pthread_thread* thread, uint32 key, int32 sequence)
src/system/libroot/posix/pthread/pthread_key.cpp
64
__pthread_key_call_destructors(pthread_thread* thread)
src/system/libroot/posix/time/timer_support.cpp
62
pthread_thread thread;