X-Git-Url: http://git.iain.cx/?a=blobdiff_plain;f=nssm.h;h=f95391d12a65f1c4a0e5523b9f8dbdecd918f2e1;hb=32a1d0fab47a050086106aac346342c70f4d985b;hp=cbfa15fdf7fa09a0785c43a9535748d20724105b;hpb=c03d51cbbfe9f4f8a28dbabbfc068573a1842b74;p=nssm.git diff --git a/nssm.h b/nssm.h index cbfa15f..f95391d 100644 --- a/nssm.h +++ b/nssm.h @@ -41,8 +41,11 @@ #include #include #include "service.h" +#include "account.h" +#include "console.h" #include "env.h" #include "event.h" +#include "hook.h" #include "imports.h" #include "messages.h" #include "process.h" @@ -57,7 +60,6 @@ int str_number(const TCHAR *, unsigned long *, TCHAR **); int str_number(const TCHAR *, unsigned long *); int num_cpus(); int usage(int); -void banner(); #define NSSM _T("NSSM") #ifdef _WIN64 @@ -95,6 +97,9 @@ void banner(); */ #define NSSM_KILL_THREADS_GRACE_PERIOD 1500 +/* How many milliseconds to pause after rotating logs. */ +#define NSSM_ROTATE_DELAY 0 + /* Margin of error for service status wait hints in milliseconds. */ #define NSSM_WAITHINT_MARGIN 2000 @@ -132,4 +137,10 @@ void banner(); #define NSSM_SERVICE_CONTROL_START 0 #define NSSM_SERVICE_CONTROL_ROTATE 128 +/* How many milliseconds to wait for a hook. */ +#define NSSM_HOOK_DEADLINE 60000 + +/* How many milliseconds to wait for outstanding hooks. */ +#define NSSM_HOOK_THREAD_DEADLINE 80000 + #endif