summaryrefslogtreecommitdiff
path: root/libraries/base/GHC/Event/Manager.hs
Commit message (Expand)AuthorAgeFilesLines
* Revert "Data.List specialization to []"Matthew Pickering2021-12-031-1/+1
* Revert "base: Use one-shot kqueue on macOS"Matthew Pickering2021-11-181-2/+15
* Data.List specialization to []Oleg Grenrus2021-04-011-1/+1
* closeFd: improve documentationMarcin Szamotulski2021-02-131-4/+5
* Remove redundant "do", "return" and language extensions from baseHécate2020-09-231-2/+2
* Remove all the unnecessary LANGUAGE pragmasHécate2020-08-051-8/+6
* base: Use one-shot kqueue on macOSBen Gamari2020-01-311-15/+2
* Update Trac ticket URLs to point to GitLabRyan Scott2019-03-151-1/+1
* Add @since annotations for derived instances in baseChaitanya Koparkar2018-03-021-2/+6
* Allow CallStacks to be frozenEric Seidel2015-12-231-3/+3
* typo in comments: s/selectg/select/Sergei Trofimovich2015-10-241-1/+1
* base: Note platform dependence of registerFdBen Gamari2015-10-231-0/+5
* Fix dropped event registrationsBen Gamari2015-06-011-12/+28
* Fix #10017Andreas Voellmy2015-02-021-2/+1
* Event Manager: Make one-shot a per-registration propertyBen Gamari2015-01-121-104/+120
* Add GHC.Prim.oneShotJoachim Breitner2014-11-021-3/+3
* Move `mapM` and `sequence` to GHC.Base and break import-cyclesHerbert Valerio Riedel2014-09-211-2/+5
* Move `when` to GHC.BaseHerbert Valerio Riedel2014-09-181-1/+1
* Move (=<<) to GHC.BaseHerbert Valerio Riedel2014-09-181-1/+1
* Move `Maybe`-typedef into GHC.BaseHerbert Valerio Riedel2014-09-161-1/+1
* Revert "Revert "rts/base: Fix #9423"" and resolve issue that caused the revert.Andreas Voellmy2014-09-161-0/+1
* Make Applicative a superclass of MonadAustin Seipp2014-09-091-2/+1
* Revert "rts/base: Fix #9423"Austin Seipp2014-08-221-1/+0
* rts/base: Fix #9423Andreas Voellmy2014-08-191-0/+1
* Normalize GHC Trac URLsHerbert Valerio Riedel2014-04-191-1/+1
* Fix hangs with -threaded on iOS (#8307)Austin Seipp2013-10-111-2/+2
* EventManager: Gracefully handle an initial 'Finished' state (#8235)Patrick Palka2013-09-081-0/+5
* Switch IO manager to a mutable hashtableBryan O'Sullivan2013-09-031-68/+63
* Use atomicModifyIORef' rather than atomicModifyIORefIan Lynagh2013-06-081-5/+5
* Update parallel IO manager to handle the invalid files in the same way as pre...Andreas Voellmy2013-05-051-16/+36
* Adding a comment about the workaround of the parallel IO manager on Mac.Kazu Yamamoto2013-02-111-0/+9
* Removing unnecessary trailing spaces.Kazu Yamamoto2013-02-111-5/+5
* Workaround buggy kqueue on os x.Andreas Voellmy2013-02-111-2/+6
* Added UNPACK to emLock in GHC.Event.Manager Manager datatype.Andreas Voellmy2013-02-111-1/+1
* Add some commentary in GHC.Event.Manager to the explain the poll loop.Andreas Voellmy2013-02-111-0/+8
* Use (.&.) instead of mod in GHC.Event.Manager since the modulus is a power of 2.Andreas Voellmy2013-02-111-2/+4
* Avoid conditional compilation in GHC.Event.Manager.Andreas Voellmy2013-02-111-19/+19
* closeFdWith invokes callbacks only after the fd is closed.Andreas Voellmy2013-02-111-5/+10
* Update closeFd_ to avoid unnecessary backend modifications.Andreas Voellmy2013-02-111-2/+3
* Change GHC.Event.Manager.closeFd to unregister interest in the file with the ...Andreas Voellmy2013-02-111-3/+7
* Avoid use of backend modifyFdOnce in Poll backend in unregisterFd_.Andreas Voellmy2013-02-111-1/+4
* Added missing wakeup in GHC.Event.Manager.closeFd_.Andreas Voellmy2013-02-111-0/+1
* Improve comment on GHC.Event.Manager.closeFd_.Andreas Voellmy2013-02-111-1/+1
* preventing warnings.Kazu Yamamoto2013-02-111-4/+3
* removing trailing white spaces.Kazu Yamamoto2013-02-111-7/+7
* Parallel IO manager supports increasing and decreasing number of capabilities.Andreas Voellmy2013-02-111-12/+31
* Remove UNPACK statement to eliminate warning about unusable UNPACK.Andreas Voellmy2013-02-111-1/+1
* Remove unnecessary import.Andreas Voellmy2013-02-111-1/+1
* Wakeup is a no-op for KQueue and EPoll-based IO managers.Andreas Voellmy2013-02-111-1/+6
* Implemented optimized registration and callbacks for the case when oneShot fl...Andreas Voellmy2013-02-111-15/+67