diff options
author | Andreas Voellmy <andreas.voellmy@gmail.com> | 2013-03-17 22:27:49 -0400 |
---|---|---|
committer | Andreas Voellmy <andreas.voellmy@gmail.com> | 2013-05-05 23:08:37 -0400 |
commit | c5a4de9db902968f08f5401de74246bd04b6eee9 (patch) | |
tree | fe1f799d752fec748ab0016120f136f9d3fd0192 /libraries/base/tests/T7773.stdout | |
parent | 557a9a89da64acad9c3f8799fa3e6a4f2cb782dc (diff) | |
download | haskell-c5a4de9db902968f08f5401de74246bd04b6eee9.tar.gz |
Update parallel IO manager to handle the invalid files in the same way as previous IO manager.
This patch affects the IO manager using kqueue. See issue #7773. If the kqueue backend cannot wait for events on a file, it will simply call the registered callback for the file immediately. This is the behavior of the previous IO manager. This is not ideal, but it is an initial step toward dealing with the problem properly. Ideally, we would use a non-kqueue mechanism for waiting on files (select seems most reliable) that cannot be waited on with kqueue.
Diffstat (limited to 'libraries/base/tests/T7773.stdout')
-rw-r--r-- | libraries/base/tests/T7773.stdout | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libraries/base/tests/T7773.stdout b/libraries/base/tests/T7773.stdout new file mode 100644 index 0000000000..a32119c8aa --- /dev/null +++ b/libraries/base/tests/T7773.stdout @@ -0,0 +1,2 @@ +hello +goodbye |