Searched refs:self (Results 1 – 5 of 5) sorted by relevance
/htl/ |
A D | pt-exit.c | 35 struct __pthread *self = _pthread_self (); in __pthread_exit() local 61 __pthread_mutex_lock (&self->state_lock); in __pthread_exit() 63 if (self->cancel_state == PTHREAD_CANCEL_ENABLE && self->cancel_pending) in __pthread_exit() 66 switch (self->state) in __pthread_exit() 74 __pthread_mutex_unlock (&self->state_lock); in __pthread_exit() 81 self->state = PTHREAD_EXITED; in __pthread_exit() 85 self->status = status; in __pthread_exit() 90 __pthread_mutex_unlock (&self->state_lock); in __pthread_exit() 96 __pthread_destroy_specific (self); in __pthread_exit() 99 __pthread_sigstate_destroy (self); in __pthread_exit() [all …]
|
A D | pt-self.c | 27 struct __pthread *self = _pthread_self (); in __pthread_self() local 28 assert (self != NULL); in __pthread_self() 30 return self->thread; in __pthread_self()
|
A D | pt-sigmask.c | 27 struct __pthread *self = _pthread_self (); in pthread_sigmask() local 30 return __pthread_sigstate (self, how, set, oset, 0); in pthread_sigmask()
|
A D | pt-create.c | 47 entry_point (struct __pthread *self, void *(*start_routine) (void *), void *arg) in entry_point() argument 51 ___pthread_self = self; in entry_point() 52 __resp = &self->res_state; in entry_point() 66 err = __pthread_sigstate (self, SIG_SETMASK, &self->init_sigset, 0, 0); in entry_point() 69 if (self->c11) in entry_point()
|
A D | Makefile | 55 pt-self \
|
Completed in 9 milliseconds