summaryrefslogtreecommitdiff
path: root/rts/win32/AsyncMIO.h
diff options
context:
space:
mode:
Diffstat (limited to 'rts/win32/AsyncMIO.h')
-rw-r--r--rts/win32/AsyncMIO.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/rts/win32/AsyncMIO.h b/rts/win32/AsyncMIO.h
new file mode 100644
index 0000000000..63d8f34827
--- /dev/null
+++ b/rts/win32/AsyncMIO.h
@@ -0,0 +1,29 @@
+/* AsyncIO.h
+ *
+ * Integrating Win32 asynchronous I/O with the GHC RTS.
+ *
+ * (c) sof, 2002-2003.
+ *
+ * NOTE: This is the MIO manager, only used for --io-manager=posix.
+ * For the WINIO manager see AsyncWinIO.h.
+ */
+
+#pragma once
+
+#include "Rts.h"
+
+extern unsigned int
+addIORequest(int fd,
+ bool forWriting,
+ bool isSock,
+ HsInt len,
+ char* buf);
+extern unsigned int addDelayRequest(HsInt usecs);
+extern unsigned int addDoProcRequest(void* proc, void* param);
+extern int startupAsyncIO(void);
+extern void shutdownAsyncIO(bool wait_threads);
+
+extern int awaitRequests(bool wait);
+
+extern void abandonRequestWait(void);
+extern void resetAbandonRequestWait(void);