Lines Matching refs:SIGINT
111 * Call sigprocmask() to block (SIGINT) signal
120 /* Send SIGINT signal to the process */
121 kill(my_pid, SIGINT);
139 * 'SIGINT' is pending for the process.
154 if (!sigismember(&sigset2, SIGINT)) {
200 * Set the signal handler to catch SIGINT signal.
201 * Add the signal SIGINT to the exclude list of system-defined
228 if (sigaction(SIGINT, &sa_new, 0) == -1) {
235 * Add specified signal (SIGINT) to the signal set
238 if (sigaddset(&set, SIGINT) == -1) {
248 * This function gets executed when the signal SIGINT is delivered