diff options
Diffstat (limited to 'rts/win32/AsyncIO.h')
-rw-r--r-- | rts/win32/AsyncIO.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/rts/win32/AsyncIO.h b/rts/win32/AsyncIO.h deleted file mode 100644 index 75d0e0460d..0000000000 --- a/rts/win32/AsyncIO.h +++ /dev/null @@ -1,24 +0,0 @@ -/* AsyncIO.h - * - * Integrating Win32 asynchronous I/O with the GHC RTS. - * - * (c) sof, 2002-2003. - */ - -#pragma once - -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); |