summaryrefslogtreecommitdiffstats
path: root/contrib/ntp/libntp/mexit.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ntp/libntp/mexit.c')
-rw-r--r--contrib/ntp/libntp/mexit.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/contrib/ntp/libntp/mexit.c b/contrib/ntp/libntp/mexit.c
new file mode 100644
index 0000000..6ae452e
--- /dev/null
+++ b/contrib/ntp/libntp/mexit.c
@@ -0,0 +1,34 @@
+/*
+ * mexit - Used to exit the NTPD daemon
+ *
+ */
+
+#ifdef SYS_WINNT
+#include <stdio.h>
+#include <windows.h>
+
+HANDLE hServDoneEvent = NULL;
+
+void
+service_exit(
+ int status
+ )
+{
+ extern int debug;
+
+ if (debug) /* did not become a service, simply exit */
+ ExitThread((DWORD)status);
+ else {
+ /* service mode, need to have the service_main routine
+ * register with the service control manager that the
+ * service has stopped running, before exiting
+ */
+ if ((status > 0) && (hServDoneEvent != NULL))
+ SetEvent(hServDoneEvent);
+ ExitThread((DWORD)status);
+ }
+}
+
+#else /* not SYS_WINNT */
+int mexit_bs;
+#endif /* not SYS_WINNT */
OpenPOWER on IntegriCloud