Lines Matching defs:self
11 pthread_t self = __pthread_self();
12 if (self->canceldisable == PTHREAD_CANCEL_ENABLE || self->cancelasync)
14 self->canceldisable = PTHREAD_CANCEL_DISABLE;
26 pthread_t self;
30 if ((st=(self=__pthread_self())->canceldisable)
34 r = __syscall_cp_asm(&self->cancel, nr, u, v, w, x, y, z);
35 if (r==-EINTR && nr!=SYS_close && self->cancel &&
36 self->canceldisable != PTHREAD_CANCEL_DISABLE)
51 pthread_t self = __pthread_self();
58 if (!self->cancel || self->canceldisable == PTHREAD_CANCEL_DISABLE) return;
61 if (self->cancelasync) {
67 if (self->cancelasync) {
79 __syscall(SYS_tkill, self->tid, SIGCANCEL);
85 pthread_t self = __pthread_self();
86 if (self->cancel && !self->canceldisable)