Searched refs:act (Results 1 – 6 of 6) sorted by relevance
/bionic/libc/unistd/ |
D | siginterrupt.c | 34 struct sigaction act; in siginterrupt() local 36 (void) sigaction(sig, NULL, &act); in siginterrupt() 39 act.sa_flags &= ~SA_RESTART; in siginterrupt() 41 act.sa_flags |= SA_RESTART; in siginterrupt() 43 return sigaction(sig, &act, NULL); in siginterrupt()
|
/bionic/linker/ |
D | debugger.c | 161 struct sigaction act; in debugger_init() local 162 memset(&act, 0, sizeof(act)); in debugger_init() 163 act.sa_sigaction = debugger_signal_handler; in debugger_init() 164 act.sa_flags = SA_RESTART | SA_SIGINFO; in debugger_init() 165 sigemptyset(&act.sa_mask); in debugger_init() 167 sigaction(SIGILL, &act, NULL); in debugger_init() 168 sigaction(SIGABRT, &act, NULL); in debugger_init() 169 sigaction(SIGBUS, &act, NULL); in debugger_init() 170 sigaction(SIGFPE, &act, NULL); in debugger_init() 171 sigaction(SIGSEGV, &act, NULL); in debugger_init() [all …]
|
D | NOTICE | 182 License. However, in accepting such obligations, You may act only
|
/bionic/libc/netbsd/resolv/ |
D | res_send.c | 496 res_sendhookact act; in res_nsend() local 498 act = (*statp->qhook)(&nsap, &buf, &buflen, in res_nsend() 500 switch (act) { in res_nsend() 581 res_sendhookact act; in res_nsend() local 583 act = (*statp->rhook)(nsap, buf, buflen, in res_nsend() 585 switch (act) { in res_nsend()
|
/bionic/libc/include/sys/ |
D | linux-unistd.h | 145 int __rt_sigaction (int sig, const struct sigaction *act, struct sigaction *oact, size…
|
/bionic/libc/ |
D | SYSCALLS.TXT | 185 int __rt_sigaction:rt_sigaction (int sig, const struct sigaction *act, struct sigaction *oact, …
|