Searched refs:SIGHUP (Results 1 - 10 of 10) sorted by relevance
/httpd/server/mpm/prefork/ |
H A D | prefork.c | 143 * which is a pretty nice debugging environment. (You'll get a SIGHUP 147 * SIGHUP to the process group, ignoring it in the root process. 227 apr_signal(SIGHUP, SIG_IGN); 390 /* restart() is the signal handler for SIGHUP and AP_SIG_GRACEFUL 452 sigaddset(&sa.sa_mask, SIGHUP); 455 if (sigaction(SIGHUP, &sa, NULL) < 0) 456 ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, APLOGNO(00153) "sigaction(SIGHUP)"); 470 #ifdef SIGHUP 471 apr_signal(SIGHUP, restart); 472 #endif /* SIGHUP */ [all...] |
/httpd/server/mpm/motorz/ |
H A D | motorz.c | 34 * which is a pretty nice debugging environment. (You'll get a SIGHUP 38 * SIGHUP to the process group, ignoring it in the root process. 551 apr_signal(SIGHUP, SIG_IGN); 722 /* restart() is the signal handler for SIGHUP and AP_SIG_GRACEFUL 785 sigaddset(&sa.sa_mask, SIGHUP); 788 if (sigaction(SIGHUP, &sa, NULL) < 0) 789 ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, APLOGNO(02865) "sigaction(SIGHUP)"); 803 #ifdef SIGHUP 804 apr_signal(SIGHUP, restart); 805 #endif /* SIGHUP */ [all...] |
/httpd/test/ |
H A D | time-sem.c | 234 sigdelset(&accept_block_mask, SIGHUP); 330 sigdelset(&accept_block_mask, SIGHUP);
|
/httpd/server/mpm/mpmt_os2/ |
H A D | mpmt_os2.c | 317 kill(ap_scoreboard_image->parent[slot].pid, is_graceful ? SIGHUP : SIGTERM); 392 if (sigaction(SIGHUP, &sa, NULL) < 0) 393 ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, APLOGNO(00211) "sigaction(SIGHUP)");
|
H A D | mpmt_os2_child.c | 334 kill(getpid(), SIGHUP); local 486 if (sigaction(SIGHUP, &sa, NULL) < 0) 487 ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, APLOGNO(00199) "sigaction(SIGHUP)");
|
/httpd/server/mpm/worker/ |
H A D | worker.c | 214 * This gives you a pretty nice debugging environment. (You'll get a SIGHUP 218 * SIGHUP to the process group, ignoring it in the root process. 248 #define LISTENER_SIGNAL SIGHUP 296 * with SIGHUP unblocked, but that doesn't work on Linux 574 sigaddset(&sa.sa_mask, SIGHUP); 577 if (sigaction(SIGHUP, &sa, NULL) < 0) 579 "sigaction(SIGHUP)"); 594 #ifdef SIGHUP 595 apr_signal(SIGHUP, restart); 596 #endif /* SIGHUP */ [all...] |
/httpd/server/ |
H A D | mpm_unix.c | 407 case SIGHUP: 825 *exit_status = send_signal(otherpid, SIGHUP);
|
/httpd/server/mpm/event/ |
H A D | event.c | 407 * This gives you a pretty nice debugging environment. (You'll get a SIGHUP 411 * SIGHUP to the process group, ignoring it in the root process. 435 #define LISTENER_SIGNAL SIGHUP 501 * with SIGHUP unblocked, but that doesn't work on Linux 806 sigaddset(&sa.sa_mask, SIGHUP); 809 if (sigaction(SIGHUP, &sa, NULL) < 0) 811 "sigaction(SIGHUP)"); 826 #ifdef SIGHUP 827 apr_signal(SIGHUP, restart); 828 #endif /* SIGHUP */ [all...] |
/httpd/modules/generators/ |
H A D | mod_cgid.c | 323 kill(proc->pid, SIGHUP); /* send signal to daemon telling it to die */ 580 if (sig == SIGHUP) { 613 apr_signal(SIGHUP, daemon_signal_handler);
|
/httpd/modules/ssl/ |
H A D | mod_ssl_ct.c | 921 if (sig == SIGHUP) { 971 kill(proc->pid, SIGHUP); /* send signal to daemon telling it to die */ 988 apr_signal(SIGHUP, daemon_signal_handler); 1047 apr_sleep(apr_time_from_sec(30)); /* SIGHUP at restart/stop will break out */
|
Completed in 3845 milliseconds