diff options
Diffstat (limited to 'src/win32/sigaction/sigaction.cpp')
-rw-r--r-- | src/win32/sigaction/sigaction.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/win32/sigaction/sigaction.cpp b/src/win32/sigaction/sigaction.cpp new file mode 100644 index 000000000..f65ffaa84 --- /dev/null +++ b/src/win32/sigaction/sigaction.cpp @@ -0,0 +1,31 @@ + /* POSIX emulation layer for Windows.
+ *
+ * Copyright (C) 2008-2011 Anope Team <team@anope.org>
+ *
+ * Please read COPYING and README for further details.
+ *
+ * Based on the original code of Epona by Lara.
+ * Based on the original code of Services by Andy Church.
+ */
+
+ #include <windows.h>
+ #include "sigaction.h"
+ #include <signal.h>
+
+ int sigaction(int sig, struct sigaction *action, struct sigaction *old)
+ {
+ if (sig == -1)
+ return 0;
+ if (old == NULL)
+ {
+ if (signal(sig, SIG_DFL) == SIG_ERR)
+ return -1;
+ }
+ else
+ {
+ if (signal(sig, action->sa_handler) == SIG_ERR)
+ return -1;
+ }
+ return 0;
+ }
+
\ No newline at end of file |