Lines Matching defs:restart

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 signal -- Restarting the server.");
827 * just move on with the restart.
874 return 0; /* Tell the caller we do not want to restart */
908 return 0; /* Tell the caller we do not want to restart */
912 return 1; /* Tell the caller we want a restart */
1444 /* You cannot change ThreadLimit across a restart; ignore
1455 "of %d not allowed during restart",
1505 * -k restart
1548 if (!strcasecmp(signal_arg, "restart")) {
1561 * across a restart
1579 /* Create restart event, apPID_restart, where PID is the parent
1580 * Apache process ID. Restart is signaled by 'apache -k restart'.
1586 "Parent: Cannot create restart event %s", signal_restart_name);
1593 * Ths start mutex is used during a restart to prevent more than
1606 /* Always reset our console handler to be the first, even on a restart
1636 if (!strcasecmp(signal_arg, "restart")
1689 static int restart = 0; /* Default is "not a restart" */
1696 if (!restart && ((parent_pid == my_pid) || one_process)) {
1727 restart = master_main(ap_server_conf, shutdown_event, restart_event);
1729 if (!restart)