Reorganisation of the source tree
[ghc-hetmet.git] / includes / Signals.h
diff --git a/includes/Signals.h b/includes/Signals.h
new file mode 100644 (file)
index 0000000..a5907bb
--- /dev/null
@@ -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 */