| /src/external/gpl3/gcc/dist/gcc/config/rs6000/ |
| host-darwin.cc | 138 struct sigaction sact; local 147 sigemptyset(&sact.sa_mask); 148 sact.sa_flags = SA_ONSTACK | SA_SIGINFO; 149 sact.sa_sigaction = segv_handler; 150 if (sigaction (SIGSEGV, &sact, 0) < 0)
|
| /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/ |
| host-darwin.cc | 138 struct sigaction sact; local 147 sigemptyset(&sact.sa_mask); 148 sact.sa_flags = SA_ONSTACK | SA_SIGINFO; 149 sact.sa_sigaction = segv_handler; 150 if (sigaction (SIGSEGV, &sact, 0) < 0)
|
| /src/external/bsd/cron/dist/ |
| cron.c | 66 struct sigaction sact; local 78 (void)memset(&sact, 0, sizeof sact); 79 (void)sigemptyset(&sact.sa_mask); 80 sact.sa_flags = 0; 82 sact.sa_flags |= SA_RESTART; 84 sact.sa_handler = sigchld_handler; 85 (void) sigaction(SIGCHLD, &sact, NULL); 86 sact.sa_handler = sighup_handler; 87 (void) sigaction(SIGHUP, &sact, NULL) [all...] |
| do_command.c | 492 struct sigaction sact; local 506 memset(&sact, 0, sizeof(sact)); 507 sigemptyset(&sact.sa_mask); 508 sact.sa_flags = 0; 510 sact.sa_flags |= SA_RESTART; 512 sact.sa_handler = sigchld_handler; 513 (void) sigaction(SIGCHLD, &sact, NULL);
|
| /src/sys/dev/ic/ |
| ahcisata_core.c | 648 uint32_t is, tfd, sact; local 658 "is 0x%x CI 0x%x SACT 0x%x TFD 0x%x\n", 668 sact = AHCI_READ(sc, AHCI_P_CI(chp->ch_channel)); 671 sact = AHCI_READ(sc, AHCI_P_SACT(chp->ch_channel)); 690 "%s port %d: TFE: sact 0x%x is 0x%x tfd 0x%x\n", 691 AHCINAME(sc), chp->ch_channel, sact, is, tfd), 730 (sact & __BIT(slot)) == 0) { 747 (sact & __BIT(slot)) == 0) {
|
| /src/external/bsd/unbound/dist/testcode/ |
| unitmain.c | 694 typedef struct addr_action {char* ip; char* sact; enum respip_action act;} member in struct:addr_action 749 char* sact = strdup(config_response_ip[i].sact); local 750 unit_assert(ip && sact); 751 if(!cfg_str2list_insert(&cfg.respip_actions, ip, sact)) 800 char* sact = strdup(config_response_ip_view1[i].sact); local 801 unit_assert(ip && sact); 802 if(!cfg_str2list_insert(&cv1->respip_actions, ip, sact)) 807 char* sact = strdup(config_response_ip_view2[i].sact) local 883 char* sact = strdup("redirect"); local [all...] |