diff options
author | Duncan Coutts <duncan@well-typed.com> | 2021-01-03 17:00:11 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-01-25 05:11:14 -0500 |
commit | e93384e82fb4de5a5ee96949b7c1108bce16a875 (patch) | |
tree | 10ce155425fd89d67324f0482bfe91bd41ebc306 /rts/RtsStartup.c | |
parent | 455ad48bdfb5d47d666d23db81ad10c855dab078 (diff) | |
download | haskell-e93384e82fb4de5a5ee96949b7c1108bce16a875.tar.gz |
Move ioManager{Start,Wakeup,Die} to internal IOManager.h
Move them from the external IOInterface.h to the internal IOManager.h.
The functions are all in fact internal. They are not used from the base
library at all.
Remove ioManagerWakeup as an exported symbol. It is not used elsewhere.
Diffstat (limited to 'rts/RtsStartup.c')
-rw-r--r-- | rts/RtsStartup.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rts/RtsStartup.c b/rts/RtsStartup.c index 79c830f96d..7916ad61c8 100644 --- a/rts/RtsStartup.c +++ b/rts/RtsStartup.c @@ -46,6 +46,7 @@ # include "RetainerProfile.h" #endif +#include "IOManager.h" #if defined(mingw32_HOST_OS) && !defined(THREADED_RTS) #include "win32/AsyncMIO.h" #include "win32/AsyncWinIO.h" |