add numSparks :: IO Int (#4167)
[ghc-base.git] / GHC / Conc.lhs
2010-07-20 Simon Marlowadd numSparks :: IO Int (#4167)
2010-07-08 Simon Marlow New asynchronous exception control API (base parts)
2010-06-15 Simon MarlowAdd a note about the interruptibility of throwTo.
2010-05-16 Bas van DijkMoved MonadPlus instance for STM from Control.Monad...
2010-05-05 Simon Marlowimprove the documentation for throwTo and killThread...
2010-04-13 Ian LynaghTiny code tidy-up
2010-03-08 Bas van DijkFixed dead links in documentation of forkIO
2010-02-25 Simon MarlowPlug two race conditions that could lead to deadlocks...
2009-11-11 Simon MarlowSecond attempt to fix #1185 (forkProcess and -threaded)
2009-11-06 Simon MarlowRollback #1185 fix
2009-11-04 Ian LynaghFix the build on Windows
2009-11-03 Simon MarlowFix #1185: restart the IO manager after fork()
2009-08-30 Simon MarlowAddress #3310
2009-08-07 Ian LynaghAdd some more C wrappers; patch from Krister Walfridsson
2009-07-11 Ian LynaghFix build on Windows
2009-07-10 Ian LynaghRemove an unused import
2009-07-10 Ian LynaghreportStackOverflow now returns IO ()
2009-07-10 Ian LynaghGHC.Conc.reportError now returns IO ()
2009-07-10 Ian LynaghMinor code tidyups in GHC.Conc
2009-07-10 Ian LynaghFix "warn-unused-do-bind" warning in GHC.Conc
2009-07-07 Ian LynaghAdd back imports needed on Windows
2009-07-07 Ian LynaghRemove unused imports
2009-07-06 simonpj@microsoft.comRemove unused imports from base
2009-06-24 Simon MarlowsetNonBlockingMode now takes a flag, can turn blocking...
2009-06-22 Simon MarlowTidy up use of read/write/recv/send; avoid unnecessary...
2009-06-12 Simon MarlowRewrite of the IO library, including Unicode support
2009-04-24 Ian LynaghUse a bang pattern when we where/let-bind values with...
2009-04-23 Simon MarlowFIX #3171: make sure we have only one table of signal...
2009-03-11 Simon Marlowavoid a space leak building up in the "prodding" IORef...
2009-02-20 Ian LynaghFix warnings: put imports inside ifdefs
2009-02-20 Ian Lynaghifdef out the syncIOManager export on Windows; fixes...
2009-02-19 Simon MarlowSet the IO manager pipe descriptors to FD_CLOEXEC
2009-02-19 Simon MarlowRewrite of signal-handling (base patch; see also ghc...
2009-01-31 Ian LynaghUpdate the Exception docs
2008-11-29 shelarcyFix typo (or out of date reference) in throwTo document...
2008-11-06 Simon Marlowadd GHC.Conc.runSparks (required by GHC patch "Run...
2008-10-16 Simon Marlowdocs about how exceptions are handled by forkIO'd threa...
2008-10-13 Clemens FruhwirthImport n_capabilities via import symbol when linking...
2008-10-10 Simon Marlowadd readTVarIO :: TVar a -> IO a
2008-09-02 Simon Marlowdocs: mention that killThread on a completed thread...
2008-08-23 Ian LynaghFix Windows-only warnings
2008-08-22 Ian LynaghFix Windows-only warnings in GHC.Conc
2008-08-20 Ian LynaghFix some more warnings
2008-08-03 Ian LynaghRemove the duplicate definition of throwTo in Control...
2008-08-01 Ian LynaghRemove unused imports
2008-08-01 Ian LynaghRejig some code so Control.Exception and GHC.Conc don...
2008-08-01 Ian LynaghReshuffle GHC.Conc/GHC.TopHandler a bit to remove a...
2008-07-31 Ian LynaghTopHandler now uses the new extensible exceptions
2008-07-30 Ian LynaghStart to actually use extensible exceptions
2008-07-30 Ian LynaghRejig the extensible exceptions so there is less circul...
2008-06-21 Ian LynaghUse extensible exceptions at the lowest level
2008-07-30 Simon Marlowadd some big warnings to the docs for unsafeIOToSTM...
2008-07-10 Ian LynaghFix haddocking with older haddocks
2008-07-10 Simon MarlowAdd threadStatus :: ThreadId -> IO ThreadStatus
2008-06-16 Ian LynaghAvoid using deprecated flags
2008-03-05 Don Stewartuntabify
2008-02-28 Simon Marlowexport MVar, TVar, and STM non-abstractly
2008-01-20 Ross Patersonhaddock attributes for haddock-2.0
2007-12-05 Simon Marlowdocs: describe the changes to forkIO, and document...
2007-12-04 Simon Marlowprotect console handler against concurrent access ...
2007-12-04 Simon Marlowprotect against concurrent access to the signal handler...
2007-11-26 Ian LynaghEscape some special characters in haddock docs
2007-11-16 Simon Marlowfix comment
2007-10-09 Simon Marlowexpose the value of +RTS -N as GHC.Conc.numCapabilities...
2007-05-23 Ian LynaghFix comment: maperrno is in Win32Utils.c, not runProcess.c
2007-04-04 Ian LynaghDon't use Fd/FD in foreign decls
2007-04-03 Ian LynaghFix C/Haskell type mismatches
2007-03-07 Simon Marlowfix race condition in prodServiceThread
2007-02-09 Ian LynaghThe Windows counterpart to 'wrapround of thread delays'
2007-01-29 Neil Davieswrapround of thread delays
2007-01-17 Simon Marlowfix threadDelay
2006-12-11 simonpj@microsoftMention that throwTo does not guarantee promptness...
2006-12-11 simonpj@microsoftAdd note about synhronous delivery of throwTo
2006-12-01 Simon MarlowAdd support for the IO manager thread on Windows
2006-11-28 Ian LynaghMake sure the threaded threadDelay sleeps at least...
2006-10-07 tharris@microsoft.comSTM invariants
2006-09-04 Ross PatersonTypeable1 instances for STM and TVar
2006-07-14 simonpj@microsoftImprove documentation of atomically
2006-06-14 Ross Patersonadd signature for registerDelay
2006-06-13 Ross Patersona few doc comments
2006-05-24 Simon Marlowadd a way to ask the IO manager thread to exit
2006-05-18 Simon MarlowMove Eq, Ord, Show instances for ThreadId to GHC.Conc
2006-05-18 Simon MarlowBetter error handling in the IO manager thread
2006-03-27 Simon Marlowadd forkOnIO :: Int -> IO () -> IO ThreadId
2006-01-10 simonmar[project @ 2006-01-10 10:23:16 by simonmar]
2005-12-05 simonmar[project @ 2005-12-05 11:42:47 by simonmar]
2005-12-02 simonmar[project @ 2005-12-02 14:29:28 by simonmar]
2005-12-01 simonmar[project @ 2005-12-01 12:32:24 by simonmar]
2005-11-30 simonmar[project @ 2005-11-30 16:56:24 by simonmar]
2005-11-30 simonmar[project @ 2005-11-30 12:24:18 by simonmar]
2005-11-11 simonmar[project @ 2005-11-11 10:37:35 by simonmar]
2005-10-25 simonmar[project @ 2005-10-25 11:13:53 by simonmar]
2005-10-25 simonmar[project @ 2005-10-25 09:01:48 by simonmar]
2005-10-18 simonmar[project @ 2005-10-18 11:36:25 by simonmar]
2005-04-07 simonmar[project @ 2005-04-07 14:33:31 by simonmar]
2005-03-02 simonmar[project @ 2005-03-02 13:11:00 by simonmar]
2005-02-04 simonmar[project @ 2005-02-04 14:36:52 by simonmar]
2005-02-04 ross[project @ 2005-02-04 14:20:57 by ross]
2005-02-03 simonmar[project @ 2005-02-03 10:38:44 by simonmar]
2005-02-03 ross[project @ 2005-02-03 10:32:11 by ross]
next