Lines Matching refs:signal
26 #include <signal.h>
468 /* vars used to keep around previous signal handlers */
509 /* if next is set indicates the first signal handled in exit_signal_handler */
517 /* signal handler that will be triggered to indicate that the program
520 * store in exit_signal the signal that triggered its execution.
534 (void)signal(signum, exit_signal_handler);
540 * SIGINT, SIGTERM and SIGBREAK on CTRL events and trigger signal handler.
551 * signal handlers for these signals by using signal, and you can also
553 * https://docs.microsoft.com/de-de/cpp/c-runtime-library/reference/signal
582 * to receive and handle the WM_CLOSE message as SIGTERM signal.
674 SIGHANDLER_T oldhdlr = signal(signum, handler);
696 /* setup windows exit event before any signal can trigger */
702 /* ignore SIGHUP signal */
708 /* ignore SIGPIPE signal */
715 /* ignore SIGALRM signal */
724 /* handle SIGINT signal with our exit_signal_handler */
730 /* handle SIGTERM signal with our exit_signal_handler */
736 /* handle SIGBREAK signal with our exit_signal_handler */