Lines Matching defs:o_hand
388 struct sigaction o_hand;
463 if ((sigaction(SIGHUP, &n_hand, &o_hand) < 0) &&
464 (o_hand.sa_handler == SIG_IGN) &&
465 (sigaction(SIGHUP, &o_hand, NULL) < 0))
468 if ((sigaction(SIGTERM, &n_hand, &o_hand) < 0) &&
469 (o_hand.sa_handler == SIG_IGN) &&
470 (sigaction(SIGTERM, &o_hand, NULL) < 0))
473 if ((sigaction(SIGINT, &n_hand, &o_hand) < 0) &&
474 (o_hand.sa_handler == SIG_IGN) &&
475 (sigaction(SIGINT, &o_hand, NULL) < 0))
478 if ((sigaction(SIGQUIT, &n_hand, &o_hand) < 0) &&
479 (o_hand.sa_handler == SIG_IGN) &&
480 (sigaction(SIGQUIT, &o_hand, NULL) < 0))
484 o_hand) < 0) &&
485 (o_hand.sa_handler == SIG_IGN) &&
486 (sigaction(SIGXCPU, &o_hand, NULL) < 0))
490 if (sigaction(SIGPIPE, &n_hand, &o_hand) < 0)
493 if (sigaction(SIGXFSZ, &n_hand, &o_hand) < 0)