Lines Matching refs:nact
2043 struct sigaction nact; in z_zone_exec() local
2188 nact.sa_handler = _z_sig_trap; in z_zone_exec()
2189 nact.sa_flags = SA_RESTART; in z_zone_exec()
2190 (void) sigemptyset(&nact.sa_mask); in z_zone_exec()
2192 if (sigaction(SIGINT, &nact, &oact) < 0) { in z_zone_exec()
2200 nact.sa_handler = _z_sig_trap; in z_zone_exec()
2201 nact.sa_flags = SA_RESTART; in z_zone_exec()
2202 (void) sigemptyset(&nact.sa_mask); in z_zone_exec()
2204 if (sigaction(SIGHUP, &nact, &oact) < 0) { in z_zone_exec()
2274 nact.sa_handler = funcSigint; in z_zone_exec()
2275 nact.sa_flags = SA_RESTART; in z_zone_exec()
2276 (void) sigemptyset(&nact.sa_mask); in z_zone_exec()
2278 (void) sigaction(SIGINT, &nact, (struct sigaction *)NULL); in z_zone_exec()
2282 nact.sa_handler = funcSighup; in z_zone_exec()
2283 nact.sa_flags = SA_RESTART; in z_zone_exec()
2284 (void) sigemptyset(&nact.sa_mask); in z_zone_exec()
2286 (void) sigaction(SIGHUP, &nact, (struct sigaction *)NULL); in z_zone_exec()