Previously after config reload master waited 6s before killing old
processes. However, lib-master could have waited for 30s before it
gracefully stopped the process. So increase the timeout to 35s.
#include <unistd.h>
#include <signal.h>
-#define SERVICE_DIE_TIMEOUT_MSECS (1000*6)
+/* How long to wait after config reload before killing processes that aren't
+ dying by themself. Keep this higher than MASTER_SERVICE_DIE_TIMEOUT_MSECS. */
+#define SERVICE_DIE_TIMEOUT_MSECS (1000*35)
#define SERVICE_LOGIN_NOTIFY_MIN_INTERVAL_SECS 2
HASH_TABLE_TYPE(pid_process) service_pids;