14
I Use This!
Very Low Activity

Commits : Listings

Analyzed about 20 hours ago. based on code collected 2 days ago.
Jun 28, 2025 — Jun 28, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Handle buffers should be allocated with newPinnedByteArray# always Not just on Windows. This change is required because we now use safe foreign calls for I/O on blocking file descriptors with the threaded RTS. Exposed by concio001.thr on MacOS X: MacOS apparently uses smaller buffers by default, so they weren't being allocated as large objects. More... almost 19 years ago
fix Hugs implementation of openTempFile More... almost 19 years ago
Hugs only: avoid dependency cycle More... almost 19 years ago
open(Binary)TempFile is now portable
igloo
as Ian Lynagh
More... almost 19 years ago
Tweak temporary file filename chooser
igloo
as Ian Lynagh
More... almost 19 years ago
Move open(Binary)TempFile to System.IO
igloo
as Ian Lynagh
More... almost 19 years ago
Export throwErrnoPath* functions
igloo
as Ian Lynagh
More... almost 19 years ago
Add simple haddock docs for throwErrnoPath* functions
igloo
as Ian Lynagh
More... almost 19 years ago
Move throwErrnoPath* functions from unix:System.Posix.Error
igloo
as Ian Lynagh
More... almost 19 years ago
Rename openFd to fdToHandle' The name collision with System.Posix.IO.openFd made my brain hurt.
igloo
as Ian Lynagh
More... almost 19 years ago
Add a test for Data.Map, for a bug on the libraries@ list
igloo
as Ian Lynagh
More... almost 19 years ago
in hClose, free the handle buffer by replacing it with an empty one This helps reduce the memory requirements for a closed but unfinalised Handle. More... almost 19 years ago
fix Data.Map.updateAt See http://haskell.org/pipermail/libraries/2007-July/007785.html for a piece of code triggering the bug. updateAt threw away parts of the tree making up the map. More... almost 19 years ago
Implement GHC.Environment.getFullArgs This returns all the arguments, including those normally eaten by the RTS (+RTS ... -RTS). This is mainly for ghc-inplace, where we need to pass /all/ the arguments on to the real ghc. e.g. ioref001(ghci) was failing because the +RTS -K32m -RTS wasn't getting passed on.
igloo
as Ian Lynagh
More... almost 19 years ago
Define stripPrefix; fixes trac #1464
igloo
as Ian Lynagh
More... almost 19 years ago
no need to hide Maybe More... almost 19 years ago
Add a more efficient Data.List.foldl' for GHC (from GHC's utils/Util.lhs)
igloo
as Ian Lynagh
More... almost 19 years ago
Remove include-dirs ../../includes and ../../rts We get these by virtue of depending on the rts package.
igloo
as Ian Lynagh
More... almost 19 years ago
FIX #1131 (newArray_ allocates an array full of garbage) Now newArray_ returns a deterministic result in the ST monad, and behaves as before in other contexts. The current newArray_ is renamed to unsafeNewArray_; the MArray class therefore has one more method than before. More... almost 19 years ago
change nhc98 option from -prelude to --prelude More... almost 19 years ago
Word is a type synonym in nhc98 - so class instance not permitted. More... about 19 years ago
fix bug in writes to blocking FDs in the non-threaded RTS More... about 19 years ago
Modernize printf. More... about 19 years ago
Use "-- //" (2 spaces) rather than "-- //" (1) to avoid tripping haddock up Are we nearly there yet?
igloo
as Ian Lynagh
More... about 19 years ago
Use a combination of Haskell/C comments to ensure robustness. e.g. -- // ensures that _no_ preprocessor will try to tokenise the rest of the line. More... about 19 years ago
Change C-style comments to Haskell-style. These two headers are only ever used for pre-processing Haskell code, and are never seen by any C tools except cpp. Using the Haskell comment convention means that cpphs no longer needs to be given the --strip option to remove C comments from open code. This is a Good Thing, because all of /* */ and // are valid Haskell operator names, and there is no compelling reason to forbid using them in files which also happen to have C-preprocessor directives. More... about 19 years ago
makefileHook needs to generate PrimopWrappers.hs too More... about 19 years ago
Hugs now gets MonadFix(mfix) from its prelude More... about 19 years ago
Typo (consUtils.hs -> consUtils.h)
igloo
as Ian Lynagh
More... about 19 years ago
update prototype following inputReady->fdReady change More... about 19 years ago