Skip to content
Snippets Groups Projects
  1. Jan 17, 2013
  2. Dec 06, 2012
  3. Dec 02, 2012
  4. Jul 19, 2012
  5. Jul 18, 2012
  6. Jul 17, 2012
  7. 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
  8. Jun 19, 2012
  9. Apr 25, 2012
  10. Apr 04, 2012
  11. Mar 30, 2012
  12. Mar 23, 2012
  13. Mar 09, 2012
  14. Feb 26, 2012
  15. Feb 22, 2012
  16. Feb 10, 2012
  17. Jan 10, 2012
  18. Jan 09, 2012
  19. Jan 06, 2012
  20. Dec 15, 2011
  21. Dec 06, 2011
  22. Dec 03, 2011
  23. Nov 28, 2011
  24. Nov 25, 2011
    • Ian Lynagh's avatar
      Fixes for NetBSD · c849742c
      Ian Lynagh authored
      Based on a patch from Arnaud Degroote <degroote@NetBSD.org> in
      trac #5480.
      c849742c
  25. Nov 23, 2011
  26. Nov 22, 2011
    • Simon Marlow's avatar
    • Simon Marlow's avatar
      Provide a raw ByteString version of FilePath and environment APIs · 34c7bf89
      Simon Marlow authored
      The new module System.Posix.ByteString provides exactly the same API
      as System.Posix, except that:
      
        - There is a new type: RawFilePath = ByteString
      
        - All functions mentioning FilePath in the System.Posix API
          use RawFilePath in the System.Posix.ByteString API
      
        - RawFilePaths are not subject to Unicode locale encoding and
          decoding, unlike FilePaths.  They are the exact bytes passed to and
          returned from the underlying POSIX API.
      
        - Similarly for functions that deal in environment
          strings (System.Posix.Env): these use untranslated ByteStrings
          in System.Posix.Environment
      
        - There is a new function
      
           System.Posix.ByteString.getArgs :: [ByteString]
      
          returning the raw untranslated arguments as passed to exec() when
          the program was started.
      34c7bf89
Loading