Searched defs:restart (Results 1 - 7 of 7) sorted by relevance
/httpd/server/mpm/mpmt_os2/ |
H A D | mpmt_os2.c | 160 char restart; local 171 restart = master_main(); 175 if (!restart) {
|
/httpd/server/mpm/motorz/ |
H A D | motorz.c | 722 /* restart() is the signal handler for SIGHUP and AP_SIG_GRACEFUL 725 static void restart(int sig) function 787 sa.sa_handler = restart; 804 apr_signal(SIGHUP, restart); 807 apr_signal(AP_SIG_GRACEFUL, restart); 1027 ap_scoreboard_image->global->running_generation) { /* restart? */ 1028 /* yeah, this could be non-graceful restart, in which case the 1113 * The pod is used for signalling the graceful restart. 1439 /* we've been told to restart */ 1456 "Graceful restart requeste [all...] |
/httpd/server/mpm/netware/ |
H A D | mpm_netware.c | 288 /* restart() is the signal handler for SIGHUP and SIGWINCH 291 static void restart(void) function 503 * the network is up again, and restart the children. 954 else { /* the only other way out is a restart */ 963 "Graceful restart requested, doing restart"); 965 /* Wait for all of the threads to terminate before initiating the restart */ 1226 restart(); 1262 printf("\tRESTART - Reread the configuration file and restart Apache\n");
|
/httpd/server/mpm/prefork/ |
H A D | prefork.c | 390 /* restart() is the signal handler for SIGHUP and AP_SIG_GRACEFUL 393 static void restart(int sig) function 454 sa.sa_handler = restart; 471 apr_signal(SIGHUP, restart); 474 apr_signal(AP_SIG_GRACEFUL, restart); 650 if (die_now /* in graceful stop/restart */ 656 /* timeout == 10 seconds to avoid a hang at graceful restart/stop 733 * connection so that we'll go away if a graceful restart occurred 741 ap_scoreboard_image->global->running_generation) { /* restart? */ 742 /* yeah, this could be non-graceful restart, i [all...] |
/httpd/server/mpm/winnt/ |
H A D | mpm_winnt.c | 71 static HANDLE restart_event; /* used to signal the parent to restart */ 159 * Under Unix, Apache can be told to shutdown or restart by sending various 182 * graceful restart. 710 * The restart event causes master_main to start a new child process and 712 * The restart event is set as a result of one of the following: 713 * 1. An apache -k restart command on the command line 736 * robustness, master_main will restart the child process under this 784 /* Wait for shutdown or restart events or for child death */ 811 /* Received a restart event. Prepare the restart_event to be reused 816 "Parent: Received restart signa 1689 static int restart = 0; /* Default is "not a restart" */ local [all...] |
/httpd/server/mpm/worker/ |
H A D | worker.c | 251 * worker threads during an ungraceful restart or shutdown. 469 * functions to initiate shutdown or restart without relying on signals. 470 * Previously this was initiated in sig_term() and restart() signal handlers, 471 * but we want to be able to start a shutdown/restart from other sources -- 479 * to determine whether to shutdown or restart. The child process should 500 /* do a graceful restart if graceful == 1 */ 517 static void restart(int sig) function 576 sa.sa_handler = restart; 595 apr_signal(SIGHUP, restart); 598 apr_signal(AP_SIG_GRACEFUL, restart); [all...] |
/httpd/server/mpm/event/ |
H A D | event.c | 701 * functions to initiate shutdown or restart without relying on signals. 702 * Previously this was initiated in sig_term() and restart() signal handlers, 703 * but we want to be able to start a shutdown/restart from other sources -- 711 * to determine whether to shutdown or restart. The child process should 732 /* do a graceful restart if graceful == 1 */ 749 static void restart(int sig) function 808 sa.sa_handler = restart; 827 apr_signal(SIGHUP, restart); 830 apr_signal(AP_SIG_GRACEFUL, restart); 2138 /* XXX For ungraceful termination/restart, w [all...] |
Completed in 138 milliseconds