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/RtsSymbols.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/RtsSymbols.c')
-rw-r--r-- | rts/RtsSymbols.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/rts/RtsSymbols.c b/rts/RtsSymbols.c index 7cd62faabe..a3ee8505ae 100644 --- a/rts/RtsSymbols.c +++ b/rts/RtsSymbols.c @@ -341,7 +341,6 @@ SymI_HasProto(setIOManagerControlFd) \ SymI_HasProto(setTimerManagerControlFd) \ SymI_HasProto(setIOManagerWakeupFd) \ - SymI_HasProto(ioManagerWakeup) \ SymI_HasProto(blockUserSignals) \ SymI_HasProto(unblockUserSignals) #else @@ -350,7 +349,6 @@ SymI_HasProto(getOverlappedEntries) \ SymI_HasProto(completeSynchronousRequest) \ SymI_HasProto(registerAlertableWait) \ - SymI_HasProto(ioManagerWakeup) \ SymI_HasProto(sendIOManagerEvent) \ SymI_HasProto(readIOManagerEvent) \ SymI_HasProto(getIOManagerEvent) \ |