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/Capability.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/Capability.c')
-rw-r--r-- | rts/Capability.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rts/Capability.c b/rts/Capability.c index a77112650a..3ef604693b 100644 --- a/rts/Capability.c +++ b/rts/Capability.c @@ -29,6 +29,7 @@ #include "RtsUtils.h" #include "sm/OSMem.h" #include "sm/BlockAlloc.h" // for countBlocks() +#include "IOManager.h" #include <string.h> |