Lines Matching defs:pthread
14 #define pthread __pthread macro
16 struct pthread { struct
19 struct pthread *self; argument
21 struct pthread *prev, *next; /* non-ABI */ argument
22 uintptr_t sysinfo;
23 uintptr_t canary, canary2;
26 int tid;
27 int errno_val;
28 volatile int detach_state;
29 volatile int cancel;
30 volatile unsigned char canceldisable, cancelasync;
31 unsigned char tsd_used:1;
32 unsigned char dlerror_flag:1;
33 unsigned char *map_base;
34 size_t map_size;
35 void *stack;
36 size_t stack_size;
37 size_t guard_size;
38 void *result;
39 struct __ptcb *cancelbuf;
40 void **tsd;
41 struct {
66 pthread_t thread; argument