Searched refs:sact (Results 1 – 4 of 4) sorted by relevance
| /netbsd/src/external/bsd/cron/dist/ |
| D | cron.c | 66 struct sigaction sact; in main() local 78 (void)memset(&sact, 0, sizeof sact); in main() 79 (void)sigemptyset(&sact.sa_mask); in main() 80 sact.sa_flags = 0; in main() 82 sact.sa_flags |= SA_RESTART; in main() 84 sact.sa_handler = sigchld_handler; in main() 85 (void) sigaction(SIGCHLD, &sact, NULL); in main() 86 sact.sa_handler = sighup_handler; in main() 87 (void) sigaction(SIGHUP, &sact, NULL); in main() 88 sact.sa_handler = quit; in main() [all …]
|
| D | do_command.c | 492 struct sigaction sact; in child_process() local 506 memset(&sact, 0, sizeof(sact)); in child_process() 507 sigemptyset(&sact.sa_mask); in child_process() 508 sact.sa_flags = 0; in child_process() 510 sact.sa_flags |= SA_RESTART; in child_process() 512 sact.sa_handler = sigchld_handler; in child_process() 513 (void) sigaction(SIGCHLD, &sact, NULL); in child_process()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/rs6000/ |
| D | host-darwin.cc | 138 struct sigaction sact; in darwin_rs6000_extra_signals() local 147 sigemptyset(&sact.sa_mask); in darwin_rs6000_extra_signals() 148 sact.sa_flags = SA_ONSTACK | SA_SIGINFO; in darwin_rs6000_extra_signals() 149 sact.sa_sigaction = segv_handler; in darwin_rs6000_extra_signals() 150 if (sigaction (SIGSEGV, &sact, 0) < 0) in darwin_rs6000_extra_signals()
|
| /netbsd/src/sys/dev/ic/ |
| D | ahcisata_core.c | 648 uint32_t is, tfd, sact; in ahci_intr_port_common() local 668 sact = AHCI_READ(sc, AHCI_P_CI(chp->ch_channel)); in ahci_intr_port_common() 671 sact = AHCI_READ(sc, AHCI_P_SACT(chp->ch_channel)); in ahci_intr_port_common() 691 AHCINAME(sc), chp->ch_channel, sact, is, tfd), in ahci_intr_port_common() 730 (sact & __BIT(slot)) == 0) { in ahci_intr_port_common() 747 (sact & __BIT(slot)) == 0) { in ahci_intr_port_common()
|