diff options
author | Ian Lynagh <igloo@earth.li> | 2011-03-21 23:43:08 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-03-21 23:43:08 +0000 |
commit | cb28985ec37f65a8fee697e2b6d359626a44a41a (patch) | |
tree | 54171fa66f432b7f29c6141452b0d080dd5aa777 /rts/posix/Signals.c | |
parent | d8dea07bbaef8840736545571bf557d556002bef (diff) | |
download | haskell-cb28985ec37f65a8fee697e2b6d359626a44a41a.tar.gz |
Rename System.Event to GHC.Event
It's just an internal GHC library, for now at least
Diffstat (limited to 'rts/posix/Signals.c')
-rw-r--r-- | rts/posix/Signals.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/posix/Signals.c b/rts/posix/Signals.c index 1e1bb3f13b..9f5bf9f370 100644 --- a/rts/posix/Signals.c +++ b/rts/posix/Signals.c @@ -101,7 +101,7 @@ void setIOManagerWakeupFd (int fd) { // only called when THREADED_RTS, but unconditionally - // compiled here because System.Event.Control depends on it. + // compiled here because GHC.Event.Control depends on it. io_manager_wakeup_fd = fd; } @@ -109,7 +109,7 @@ void setIOManagerControlFd (int fd) { // only called when THREADED_RTS, but unconditionally - // compiled here because System.Event.Control depends on it. + // compiled here because GHC.Event.Control depends on it. io_manager_control_fd = fd; } |