Searched defs:pthread (Results 1 – 10 of 10) sorted by relevance
16 #define pthread __pthread macro18 struct pthread { struct21 struct pthread *self; argument25 struct pthread *prev, *next; /* non-ABI */ argument26 uintptr_t sysinfo;29 uintptr_t canary_pad;31 uintptr_t canary;35 int tid;36 int errno_val;37 volatile int detach_state;[all …]
15 #define pthread __pthread macro17 struct pthread { struct20 struct pthread *self; argument22 struct pthread *prev, *next; /* non-ABI */ argument23 uintptr_t sysinfo;24 uintptr_t canary, canary2;27 int tid;28 int errno_val;29 volatile int detach_state;30 volatile int cancel;[all …]
31 #define pthread __pthread macro33 struct pthread { struct36 struct pthread *self; argument40 struct pthread *prev, *next; /* non-ABI */ argument41 uintptr_t sysinfo;44 uintptr_t canary_pad;46 uintptr_t canary;50 int tid;51 int pid;52 int errno_val;[all …]
42 Pthread pthread; member
38 pthread_t pthread; member
81 pthread_t pthread; member
59 pthread_dep = cpp.find_library('pthread', required : false) build
257 AC_ARG_WITH(pthread, optwith
345 int set_thread_priority(pthread_t pthread, int prio) in set_thread_priority()