summaryrefslogtreecommitdiff
path: root/rts/ThrIOManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'rts/ThrIOManager.h')
-rw-r--r--rts/ThrIOManager.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/rts/ThrIOManager.h b/rts/ThrIOManager.h
new file mode 100644
index 0000000000..eeccc6c420
--- /dev/null
+++ b/rts/ThrIOManager.h
@@ -0,0 +1,15 @@
+/* -----------------------------------------------------------------------------
+ *
+ * (c) The GHC Team 1998-2006
+ *
+ * Communicating with the IO manager thread (see GHC.Conc).
+ * Posix implementation in posix/Signals.c
+ * Win32 implementation in win32/ThrIOManager.c
+ *
+ * -------------------------------------------------------------------------*/
+
+#if defined(THREADED_RTS)
+void ioManagerWakeup (void);
+void ioManagerDie (void);
+void ioManagerStart (void);
+#endif