Lines Matching refs:nact
676 struct sigaction nact; in _z_zone_exec() local
876 nact.sa_handler = _z_sig_trap; in _z_zone_exec()
877 nact.sa_flags = SA_RESTART; in _z_zone_exec()
878 (void) sigemptyset(&nact.sa_mask); in _z_zone_exec()
880 if (sigaction(SIGINT, &nact, &oact) < 0) { in _z_zone_exec()
888 nact.sa_handler = _z_sig_trap; in _z_zone_exec()
889 nact.sa_flags = SA_RESTART; in _z_zone_exec()
890 (void) sigemptyset(&nact.sa_mask); in _z_zone_exec()
892 if (sigaction(SIGHUP, &nact, &oact) < 0) { in _z_zone_exec()
1030 nact.sa_handler = funcSigint; in _z_zone_exec()
1031 nact.sa_flags = SA_RESTART; in _z_zone_exec()
1032 (void) sigemptyset(&nact.sa_mask); in _z_zone_exec()
1034 (void) sigaction(SIGINT, &nact, (struct sigaction *)NULL); in _z_zone_exec()
1038 nact.sa_handler = funcSighup; in _z_zone_exec()
1039 nact.sa_flags = SA_RESTART; in _z_zone_exec()
1040 (void) sigemptyset(&nact.sa_mask); in _z_zone_exec()
1042 (void) sigaction(SIGHUP, &nact, (struct sigaction *)NULL); in _z_zone_exec()