blob: eeccc6c42092739a1037be1fc86da1452e16512b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|