As we no longer support MODE_MWORKER_WAIT for master (it became redundant with
MODE_MWORKER after moving master-worker fork in init()), let's rename
exit_on_waitmode_failure() callback in just exit_on_failure().
/*
* Exit with an error message upon a wait-mode failure.
*/
-void exit_on_waitmode_failure()
+void exit_on_failure()
{
if (!atexit_flag)
return;
global.mode |= MODE_MWORKER_WAIT;
master = 1;
atexit_flag = 1;
- atexit(exit_on_waitmode_failure);
+ atexit(exit_on_failure);
ha_notice("Initializing new worker (%d)\n", worker_pid);
/* find the right mworker_proc */