Lines Matching refs:SIGINT
118 sigaddset(&newprocmask, SIGINT);
617 * Allow a SIGHUP, SIGINT, SIGALRM, or SIGTERM to interrupt our
625 sigaction(SIGINT, NULL, &oldint);
644 sigaction(SIGINT, &newsigact, NULL);
650 /* Unmask SIGHUP, SIGINT, SIGALRM, SIGTERM. */
656 /* Mask SIGHUP, SIGINT, SIGALRM, SIGTERM. */
665 sigaction(SIGINT, &oldint, NULL);
675 /* Mask SIGHUP, SIGINT, SIGALRM, SIGTERM. */
684 sigaction(SIGINT, &oldint, NULL);
752 sigaction(SIGINT, NULL, &oldint);
754 kill(getpid(), SIGINT);
755 return (SIGINT);