summaryrefslogtreecommitdiff
path: root/includes/Signals.h
diff options
context:
space:
mode:
Diffstat (limited to 'includes/Signals.h')
-rw-r--r--includes/Signals.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/includes/Signals.h b/includes/Signals.h
new file mode 100644
index 0000000000..a5907bbee9
--- /dev/null
+++ b/includes/Signals.h
@@ -0,0 +1,18 @@
+/* -----------------------------------------------------------------------------
+ *
+ * (c) The GHC Team, 1998-2005
+ *
+ * RTS signal handling
+ *
+ * ---------------------------------------------------------------------------*/
+
+#ifndef SIGNALS_H
+#define SIGNALS_H
+
+#define STG_SIG_DFL (-1)
+#define STG_SIG_IGN (-2)
+#define STG_SIG_ERR (-3)
+#define STG_SIG_HAN (-4)
+#define STG_SIG_RST (-5)
+
+#endif /* SIGNALS_H */