Home
last modified time | relevance | path

Searched refs:SIGCANCEL (Results 1 – 16 of 16) sorted by relevance

/third_party/musl/src/thread/
Dpthread_cancel.c57 _sigaddset(&uc->uc_sigmask, SIGCANCEL); in cancel_handler()
67 __syscall(SYS_tkill, self->tid, SIGCANCEL); in cancel_handler()
84 __libc_sigaction(SIGCANCEL, &sa, 0); in init_cancellation()
100 return pthread_kill(t, SIGCANCEL); in pthread_cancel()
Dpthread_create.c355 args->sig_mask[(SIGCANCEL-1)/8/sizeof(long)] &= in __pthread_create()
356 ~(1UL<<((SIGCANCEL-1)%(8*sizeof(long)))); in __pthread_create()
/third_party/musl/porting/linux/user/src/thread/
Dpthread_cancel.c58 _sigaddset(&uc->uc_sigmask, SIGCANCEL); in cancel_handler()
68 __syscall(SYS_tkill, self->tid, SIGCANCEL); in cancel_handler()
85 __libc_sigaction(SIGCANCEL, &sa, 0); in init_cancellation()
101 return pthread_kill(t, SIGCANCEL); in pthread_cancel()
Dpthread_create.c452 args->sig_mask[(SIGCANCEL-1)/8/sizeof(long)] &= in __pthread_create()
453 ~(1UL<<((SIGCANCEL-1)%(8*sizeof(long)))); in __pthread_create()
/third_party/musl/porting/liteos_a/user/src/thread/
Dpthread_cancel.c72 __libc_sigaction(SIGCANCEL, &sa, 0); in init_cancellation()
88 return pthread_kill(t, SIGCANCEL); in pthread_cancel()
Dpthread_create.c336 args->sig_mask[(SIGCANCEL-1)/8/sizeof(long)] &= in __pthread_create()
337 ~(1UL<<((SIGCANCEL-1)%(8*sizeof(long)))); in __pthread_create()
/third_party/ltp/testcases/kernel/syscalls/sigrelse/
Dsigrelse01.c120 #define SIGCANCEL 32 macro
734 case SIGCANCEL: in choose_sig()
/third_party/musl/porting/linux/user/src/mq/
Dmq_notify.c71 __syscall(SYS_tkill, td->tid, SIGCANCEL); in mq_notify()
/third_party/musl/porting/uniproton/kernel/src/internal/
Dpthread_impl.h68 #define SIGCANCEL 33 macro
/third_party/musl/porting/liteos_m/kernel/src/internal/
Dpthread_impl.h68 #define SIGCANCEL 33 macro
/third_party/musl/porting/liteos_a/kernel/src/internal/
Dpthread_impl.h71 #define SIGCANCEL 33 macro
/third_party/musl/porting/liteos_m/user/src/internal/
Dpthread_impl.h117 #define SIGCANCEL 33 macro
/third_party/musl/porting/liteos_a/user/src/internal/
Dpthread_impl.h131 #define SIGCANCEL 33 macro
/third_party/musl/src/internal/
Dpthread_impl.h130 #define SIGCANCEL 33 macro
/third_party/musl/porting/linux/user/src/internal/
Dpthread_impl.h163 #define SIGCANCEL 33 macro
/third_party/musl/porting/linux/user/src/aio/
Daio.c385 __syscall(SYS_tkill, p->td->tid, SIGCANCEL); in aio_cancel()