Skip to content
Snippets Groups Projects
  1. Nov 08, 2013
  2. Nov 07, 2013
  3. Oct 13, 2013
  4. Oct 12, 2013
  5. Oct 09, 2013
  6. Aug 11, 2013
  7. Jul 21, 2013
  8. Feb 19, 2013
  9. Feb 16, 2013
  10. Jan 30, 2013
  11. Jan 25, 2013
    • Simon Marlow's avatar
      Indicate whether a process dumped core in the ProcessStatus · dc29d55b
      Simon Marlow authored
      The Bool field of Terminated is new, as is the documentation:
      
      data ProcessStatus
         = Exited ExitCode        -- ^ the process exited by calling
                                  -- @exit()@ or returning from @main@
         | Terminated Signal Bool -- ^ the process was terminated by a
                                  -- signal, the @Bool@ is @True@ if a core
                                  -- dump was produced
         | Stopped Signal         -- ^ the process was stopped by a signal
         deriving (Eq, Ord, Show)
      
      This is an API change, hence will need a major version bump.
      dc29d55b
    • Simon Marlow's avatar
      Import waitpid() with interruptible · af75e099
      Simon Marlow authored
      af75e099
  12. Jan 17, 2013
  13. Dec 01, 2012
  14. Nov 30, 2012
  15. Oct 31, 2012
    • ian@well-typed.com's avatar
      Export CatchInfo,CatchInfoOnce constructors of Handler · 2ab2b495
      ian@well-typed.com authored
      This fixes warnings following
          commit 910a642294eb3547d0cbb3d5735ad81b964f137b
          Author: Simon Peyton Jones <simonpj@microsoft.com>
          Date:   Mon Oct 29 23:25:25 2012 +0000
          Do not treat a constructor in a *pattern* as a *use* of that constructor
      
      I'm not sure if this is the right thing to do: In
          commit 1c4608e3
          Author: Simon Marlow <marlowsd@gmail.com>
          Date:   Thu Feb 19 10:05:32 2009 +0000
          Rewrite of signal-handling.
      the commit message says:
          The new implementation has the capability to define signal handlers
          that have access to the siginfo of the signal (#592), but this
          functionality is not exposed in this patch.
      but this at least gets validate builds working again, and we can change
      it if necessary as part of #2451
      2ab2b495
  16. Sep 06, 2012
  17. Sep 03, 2012
  18. Jul 18, 2012
  19. Jul 17, 2012
  20. Jul 02, 2012
    • pcapriotti's avatar
      Add a WARNING for sleep, and expand documentation. · ba7961f1
      pcapriotti authored
      sleep doesn't really work on GHC because it is always immediately
      interrupted by SIGVTALRM used in the RTS.
      
      I explained the problem in a comment and added a WARNING pragma.
      
      usleep and nanosleep have a similar problem, but, since they have better
      precision, they can be restarted, so they are not as unusable as sleep.
      ba7961f1
  21. Apr 25, 2012
  22. Apr 04, 2012
Loading