Lines Matching refs:SIGTERM
488 #ifdef SIGTERM
540 * SIGINT, SIGTERM and SIGBREAK on CTRL events and trigger signal handler.
549 * The SIGILL and SIGTERM signals are not generated under Windows.
563 #ifdef SIGTERM
564 case CTRL_CLOSE_EVENT: signum = SIGTERM; break;
582 * to receive and handle the WM_CLOSE message as SIGTERM signal.
590 #ifdef SIGTERM
591 case WM_CLOSE: signum = SIGTERM; break;
729 #ifdef SIGTERM
730 /* handle SIGTERM signal with our exit_signal_handler */
731 old_sigterm_handler = set_signal(SIGTERM, exit_signal_handler, TRUE);
733 logmsg("cannot install SIGTERM handler: %s", strerror(errno));
779 #ifdef SIGTERM
781 (void) set_signal(SIGTERM, old_sigterm_handler, FALSE);