haskell-directory.git
16 years agoall but NHC
Ross Paterson [Fri, 25 May 2007 00:51:19 +0000 (00:51 +0000)]
all but NHC

16 years agoupdate CFILES pragma (used by Hugs only)
Ross Paterson [Fri, 25 May 2007 00:16:25 +0000 (00:16 +0000)]
update CFILES pragma (used by Hugs only)

16 years agoglasgow only
Malcolm.Wallace@cs.york.ac.uk [Thu, 24 May 2007 14:45:08 +0000 (14:45 +0000)]
glasgow only

16 years agoPut configure.ac back in the repo; not sure how it got removed
Ian Lynagh [Thu, 24 May 2007 14:17:45 +0000 (14:17 +0000)]
Put configure.ac back in the repo; not sure how it got removed

16 years agoNeed shlobj.h on Windows
Ian Lynagh [Wed, 23 May 2007 20:09:04 +0000 (20:09 +0000)]
Need shlobj.h on Windows

16 years agoRejig the #ifdeffery directory_2007-05-24
Ian Lynagh [Sun, 20 May 2007 15:57:43 +0000 (15:57 +0000)]
Rejig the #ifdeffery
Put __hscore_?_OK and __hscore_S_I?USR in the C inside
#ifdef __GLASGOW_HASKELL__ to match the foreign imports in the Haskell
code.

Don't check the constants are defined before defining the C functions,
as we assume that the functions exist in the Haskell code anyway.

16 years agoTiny refactoring
Ian Lynagh [Sun, 20 May 2007 15:43:57 +0000 (15:43 +0000)]
Tiny refactoring

16 years agoRemove non-directory stuff (of base), and rename package to "directory"
Ian Lynagh [Sat, 19 May 2007 11:54:19 +0000 (11:54 +0000)]
Remove non-directory stuff (of base), and rename package to "directory"

16 years agoRemove Control.Parallel*, now in package parallel
Ian Lynagh [Fri, 18 May 2007 16:54:31 +0000 (16:54 +0000)]
Remove Control.Parallel*, now in package parallel

16 years agoRemove the pretty-printing modules (now in package pretty(
Ian Lynagh [Fri, 18 May 2007 16:25:21 +0000 (16:25 +0000)]
Remove the pretty-printing modules (now in package pretty(

16 years agoadd install-includes: field
Simon Marlow [Thu, 17 May 2007 09:49:48 +0000 (09:49 +0000)]
add install-includes: field

16 years agocorrect the documentation for newForeignPtr
Simon Marlow [Wed, 16 May 2007 08:20:19 +0000 (08:20 +0000)]
correct the documentation for newForeignPtr

16 years agoWhen doing safe writes, handle EAGAIN rather than raising an exception
Simon Marlow [Tue, 15 May 2007 11:46:15 +0000 (11:46 +0000)]
When doing safe writes, handle EAGAIN rather than raising an exception
It might be that stdin was set to O_NONBLOCK by someone else, and we
should handle this case.  (this happens with GHCi, I'm not quite sure why)

16 years agoUse FilePath to make paths when building GHC/Prim.hs and GHC/PrimopWrappers.hs
Ian Lynagh [Mon, 14 May 2007 11:04:09 +0000 (11:04 +0000)]
Use FilePath to make paths when building GHC/Prim.hs and GHC/PrimopWrappers.hs

16 years agoBuild GHC/Prim.hs and GHC/PrimopWrappers.hs from Cabal
Ian Lynagh [Wed, 9 May 2007 14:26:55 +0000 (14:26 +0000)]
Build GHC/Prim.hs and GHC/PrimopWrappers.hs from Cabal

16 years agofix imports for non-GHC
Ross Paterson [Sun, 13 May 2007 00:11:38 +0000 (00:11 +0000)]
fix imports for non-GHC

16 years agoGive an example of how intersection takes elements from the first set
Ian Lynagh [Sat, 12 May 2007 16:02:53 +0000 (16:02 +0000)]
Give an example of how intersection takes elements from the first set

16 years agofurther clarify the docs for 'evaluate'
Malcolm.Wallace@cs.york.ac.uk [Tue, 8 May 2007 10:11:24 +0000 (10:11 +0000)]
further clarify the docs for 'evaluate'

16 years agoimprove documentation for evaluate
Simon Marlow [Tue, 8 May 2007 08:17:12 +0000 (08:17 +0000)]
improve documentation for evaluate

16 years agoFIX: #724 (tee complains if used in a process started by ghc)
Simon Marlow [Mon, 7 May 2007 12:35:37 +0000 (12:35 +0000)]
FIX: #724 (tee complains if used in a process started by ghc)

Now, we only set O_NONBLOCK on file descriptors that we create
ourselves.  File descriptors that we inherit (stdin, stdout, stderr)
are kept in blocking mode.  The way we deal with this differs between
the threaded and non-threaded runtimes:

 - with -threaded, we just make a safe foreign call to read(), which
   may block, but this is ok.

 - without -threaded, we test the descriptor with select() before
   attempting any I/O.  This isn't completely safe - someone else
   might read the data between the select() and the read() - but it's
   a reasonable compromise and doesn't seem to measurably affect
   performance.

17 years agothe "unknown" types are no longer required
Simon Marlow [Thu, 26 Apr 2007 13:59:31 +0000 (13:59 +0000)]
the "unknown" types are no longer required

16 years agoMake Control.Exception buildable by nhc98.
Malcolm.Wallace@cs.york.ac.uk [Fri, 4 May 2007 10:55:48 +0000 (10:55 +0000)]
Make Control.Exception buildable by nhc98.
The nhc98 does not have true exceptions, but these additions should be
enough infrastructure to pretend that it does.  Only IO exceptions will
actually work.

16 years agoTrim imports, remove a cycle
simonpj@microsoft [Thu, 3 May 2007 12:30:10 +0000 (12:30 +0000)]
Trim imports, remove a cycle

A first attempt at removing gratuitous cycles in the base package.
I've removed the useless module GHC.Dynamic, which gets rid of a cycle;
and trimmed off various unnecesary imports.

This also fixes the IsString import problem.

16 years agoBe less quiet about building the base package
simonpj@microsoft [Thu, 3 May 2007 09:37:07 +0000 (09:37 +0000)]
Be less quiet about building the base package

17 years agoRemove Splittable class (a vestige of linear implicit parameters)
simonpj@microsoft [Wed, 21 Feb 2007 10:43:29 +0000 (10:43 +0000)]
Remove Splittable class (a vestige of linear implicit parameters)

17 years agoAdd IsString to exports of GHC.Exts
simonpj@microsoft [Wed, 21 Feb 2007 10:42:49 +0000 (10:42 +0000)]
Add IsString to exports of GHC.Exts

17 years agotweak documentation as per suggestion from Marc Weber on libraries@haskell.org
Simon Marlow [Thu, 26 Apr 2007 07:59:21 +0000 (07:59 +0000)]
tweak documentation as per suggestion from Marc Weber on libraries@haskell.org

17 years agoAdd extra libraries when compiling with GHC on Windows
Ian Lynagh [Tue, 24 Apr 2007 21:31:27 +0000 (21:31 +0000)]
Add extra libraries when compiling with GHC on Windows

17 years agoFollow Cabal changes in Setup.hs
Ian Lynagh [Wed, 18 Apr 2007 11:43:45 +0000 (11:43 +0000)]
Follow Cabal changes in Setup.hs

17 years agoinclusion of libc.h is conditional on __APPLE__
Malcolm.Wallace@cs.york.ac.uk [Tue, 17 Apr 2007 08:55:56 +0000 (08:55 +0000)]
inclusion of libc.h is conditional on __APPLE__

17 years agoMERGE: fix ugly uses of memcpy foreign import inside ST
Simon Marlow [Mon, 16 Apr 2007 10:15:30 +0000 (10:15 +0000)]
MERGE: fix ugly uses of memcpy foreign import inside ST
fixes cg026

17 years agoFix configure with no --with-cc
Ian Lynagh [Sun, 15 Apr 2007 16:51:43 +0000 (16:51 +0000)]
Fix configure with no --with-cc

17 years agoMacOS 10.3 needs #include <libc.h> as well
Malcolm.Wallace@cs.york.ac.uk [Sat, 14 Apr 2007 15:55:07 +0000 (15:55 +0000)]
MacOS 10.3 needs #include <libc.h> as well

17 years agoFor nhc98 only, use hsc2hs to determine System.Posix.Types.
Malcolm.Wallace@cs.york.ac.uk [Fri, 13 Apr 2007 15:58:31 +0000 (15:58 +0000)]
For nhc98 only, use hsc2hs to determine System.Posix.Types.
Avoids the existing autoconf stuff, by introducing an auxiliary module
called NHC.PosixTypes that uses hsc2hs, which is then simply re-exported
from System.Posix.Types.

17 years agowe need a makefileHook too
Simon Marlow [Fri, 13 Apr 2007 15:13:07 +0000 (15:13 +0000)]
we need a makefileHook too

17 years agoRemove unnecesary SOURCE import of GHC.Err in GHC.Pack
Ian Lynagh [Thu, 12 Apr 2007 23:59:08 +0000 (23:59 +0000)]
Remove unnecesary SOURCE import of GHC.Err in GHC.Pack

17 years agoadd System.Posix.Types to default nhc98 build
Malcolm.Wallace@cs.york.ac.uk [Thu, 12 Apr 2007 19:50:26 +0000 (19:50 +0000)]
add System.Posix.Types to default nhc98 build

17 years agomark System.IO.openTempFile as non-portable in haddocks
Malcolm.Wallace@cs.york.ac.uk [Thu, 12 Apr 2007 13:53:59 +0000 (13:53 +0000)]
mark System.IO.openTempFile as non-portable in haddocks

17 years agoDon't turn on -Werror in Data.Fixed
Ian Lynagh [Wed, 11 Apr 2007 15:57:21 +0000 (15:57 +0000)]
Don't turn on -Werror in Data.Fixed
This may be responsible for the x86_64/Linux nightly build failing.

17 years agoFix -Wall warnings
Ian Lynagh [Wed, 11 Apr 2007 00:49:29 +0000 (00:49 +0000)]
Fix -Wall warnings

17 years agoAdd missing case in removePrefix
Ian Lynagh [Wed, 11 Apr 2007 00:25:37 +0000 (00:25 +0000)]
Add missing case in removePrefix

17 years agoAllow additional options to pass on to ./configure to be given
Ian Lynagh [Fri, 6 Apr 2007 15:18:56 +0000 (15:18 +0000)]
Allow additional options to pass on to ./configure to be given

17 years agoHugs only: fix location of unsafeCoerce
Ross Paterson [Fri, 6 Apr 2007 11:37:31 +0000 (11:37 +0000)]
Hugs only: fix location of unsafeCoerce

17 years agofix isPortableBuild test
Ross Paterson [Fri, 6 Apr 2007 11:13:04 +0000 (11:13 +0000)]
fix isPortableBuild test

17 years agoUnsafe.Coerce doesn't need Prelude
Ian Lynagh [Thu, 5 Apr 2007 17:59:30 +0000 (17:59 +0000)]
Unsafe.Coerce doesn't need Prelude

17 years agomake Setup and base.cabal suitable for building the libraries with GHC
Ian Lynagh [Thu, 8 Mar 2007 16:38:24 +0000 (16:38 +0000)]
make Setup and base.cabal suitable for building the libraries with GHC

17 years agoHsByteArray doesn't exist
Ian Lynagh [Wed, 4 Apr 2007 16:30:51 +0000 (16:30 +0000)]
HsByteArray doesn't exist

17 years agoDon't use Fd/FD in foreign decls
Ian Lynagh [Wed, 4 Apr 2007 15:58:22 +0000 (15:58 +0000)]
Don't use Fd/FD in foreign decls
Using CInt makes it much easier to verify that it is right, and we won't
get caught out by possible newtype switches between CInt/Int.

17 years agoHsByteArray doesn't exist
Ian Lynagh [Wed, 4 Apr 2007 15:57:32 +0000 (15:57 +0000)]
HsByteArray doesn't exist

17 years agoFix braino
Ian Lynagh [Wed, 4 Apr 2007 14:45:08 +0000 (14:45 +0000)]
Fix braino

17 years agoFix incorrect changes to C types in a foreign import for nhc98.
Malcolm.Wallace@cs.york.ac.uk [Wed, 4 Apr 2007 12:09:54 +0000 (12:09 +0000)]
Fix incorrect changes to C types in a foreign import for nhc98.
If we use type CTime, it needs to be imported.  Also, CTime is not an
instance of Integral, so use some other mechanism to convert it.

17 years agoFix C/Haskell type mismatches
Ian Lynagh [Tue, 3 Apr 2007 19:49:43 +0000 (19:49 +0000)]
Fix C/Haskell type mismatches

17 years agoadd new module Unsafe.Coerce to build system
Malcolm.Wallace@cs.york.ac.uk [Tue, 3 Apr 2007 13:13:33 +0000 (13:13 +0000)]
add new module Unsafe.Coerce to build system

17 years agoFix type mismatches between foreign imports and HsBase.h
Ian Lynagh [Tue, 3 Apr 2007 00:16:11 +0000 (00:16 +0000)]
Fix type mismatches between foreign imports and HsBase.h

Merge to stable, checking for interface changes.

17 years agoput 'unsafeCoerce' in a standard location
Malcolm.Wallace@cs.york.ac.uk [Mon, 13 Nov 2006 11:41:03 +0000 (11:41 +0000)]
put 'unsafeCoerce' in a standard location

17 years agofix for nhc98 build
Malcolm.Wallace@cs.york.ac.uk [Mon, 2 Apr 2007 14:17:12 +0000 (14:17 +0000)]
fix for nhc98 build

17 years agoFunction crossMapP for fixing desugaring of comprehensions
Manuel M T Chakravarty [Mon, 2 Apr 2007 08:29:06 +0000 (08:29 +0000)]
Function crossMapP for fixing desugaring of comprehensions

Merge into 6.6 branch.

17 years agoAdd min/max handling operations for IntSet/IntMap
jeanphilippe.bernardy@gmail.com [Thu, 15 Mar 2007 07:23:52 +0000 (07:23 +0000)]
Add min/max handling operations for IntSet/IntMap

17 years agoMonoid instance for Maybe and two wrappers: First and Last. trac proposal #1189
Jeffrey Yasskin [Fri, 9 Mar 2007 06:25:50 +0000 (06:25 +0000)]
Monoid instance for Maybe and two wrappers: First and Last. trac proposal #1189

17 years agoFix the type of wgencat
Ian Lynagh [Thu, 29 Mar 2007 16:42:23 +0000 (16:42 +0000)]
Fix the type of wgencat

17 years agofix strictness of foldr/build rule for take, see #1219
Simon Marlow [Tue, 27 Mar 2007 10:39:41 +0000 (10:39 +0000)]
fix strictness of foldr/build rule for take, see #1219

17 years agoremove Makefile.inc (only affects nhc98)
Malcolm.Wallace@cs.york.ac.uk [Tue, 20 Mar 2007 12:00:57 +0000 (12:00 +0000)]
remove Makefile.inc (only affects nhc98)

17 years agocopyBytes copies bytes, not elements; fixes trac #1203
Ian Lynagh [Mon, 12 Mar 2007 11:35:55 +0000 (11:35 +0000)]
copyBytes copies bytes, not elements; fixes trac #1203

17 years agoAdd ioeGetLocation, ioeSetLocation to System/IO/Error.hs; trac #1191
Ian Lynagh [Sun, 4 Mar 2007 13:03:15 +0000 (13:03 +0000)]
Add ioeGetLocation, ioeSetLocation to System/IO/Error.hs; trac #1191

17 years agofix race condition in prodServiceThread
Simon Marlow [Wed, 7 Mar 2007 13:43:30 +0000 (13:43 +0000)]
fix race condition in prodServiceThread
See #1187

17 years agoPrevent duplication of unsafePerformIO on a multiprocessor
Simon Marlow [Tue, 6 Mar 2007 14:54:24 +0000 (14:54 +0000)]
Prevent duplication of unsafePerformIO on a multiprocessor
Fixes #986.  The idea is to add a new operation

  noDuplicate :: IO ()

it is guaranteed that if two threads have executed noDuplicate, then
they are not duplicating any computation.

We now provide two new unsafe operations:

unsafeDupablePerformIO    :: IO a -> a
unsafeDupableInterleaveIO :: IO a -> IO a

which are equivalent to the old unsafePerformIO and unsafeInterleaveIO
respectively.  The new versions of these functions are defined as:

unsafePerformIO    m = unsafeDupablePerformIO (noDuplicate >> m)
unsafeInterleaveIO m = unsafeDupableInterleaveIO (noDuplicate >> m)

17 years agoexpand docs for forkOS
Simon Marlow [Mon, 5 Mar 2007 16:09:21 +0000 (16:09 +0000)]
expand docs for forkOS

17 years agodocument timeout limitations
Peter Simons [Wed, 28 Feb 2007 22:35:40 +0000 (22:35 +0000)]
document timeout limitations

17 years agoSo many people were involved in the writing of this module that
Peter Simons [Wed, 28 Feb 2007 22:34:15 +0000 (22:34 +0000)]
So many people were involved in the writing of this module that
it feels unfair to single anyone out as the lone copyright
holder.

17 years agoThis patch adds a timeout function to the base libraries. Trac #980 is
Peter Simons [Fri, 26 Jan 2007 22:26:15 +0000 (22:26 +0000)]
This patch adds a timeout function to the base libraries. Trac #980 is
concerned with this issue. The design guideline for this implementation
is that 'timeout N E' should behave exactly the same as E as long as E
doesn't time out. In our implementation, this means that E has the same
myThreadId it would have without the timeout wrapper. Any exception E
might throw cancels the timeout and propagates further up. It also
possible for E to receive exceptions thrown to it by another thread.

17 years agoPArr: fixed permutations
Manuel M T Chakravarty [Mon, 5 Mar 2007 05:58:07 +0000 (05:58 +0000)]
PArr: fixed permutations

17 years agoAdd Data.String, containing IsString(fromString); trac proposal #1126
Ian Lynagh [Tue, 30 Jan 2007 13:48:41 +0000 (13:48 +0000)]
Add Data.String, containing IsString(fromString); trac proposal #1126
This is used by the overloaded strings extension (-foverloaded-strings in GHC).

17 years agoGHC.PArr: add bounds checking
Manuel M T Chakravarty [Fri, 2 Mar 2007 05:32:24 +0000 (05:32 +0000)]
GHC.PArr: add bounds checking

17 years agoBump nhc98 stack size for System/Time.hsc
sven.panne@aedion.de [Thu, 1 Mar 2007 15:30:09 +0000 (15:30 +0000)]
Bump nhc98 stack size for System/Time.hsc

17 years agoFDs are CInts now, fixing non-GHC builds
sven.panne@aedion.de [Sun, 25 Feb 2007 10:56:20 +0000 (10:56 +0000)]
FDs are CInts now, fixing non-GHC builds

17 years agoFixed PArr.dropP
Manuel M T Chakravarty [Thu, 22 Feb 2007 03:24:05 +0000 (03:24 +0000)]
Fixed PArr.dropP
- Thanks to Audrey Tang for the bug report

17 years agoKeep the same FD in both halves of a duplex handle when dup'ing
Ian Lynagh [Tue, 20 Feb 2007 14:10:39 +0000 (14:10 +0000)]
Keep the same FD in both halves of a duplex handle when dup'ing
Otherwise we only close one of the FDs when closing the handle.
Fixes trac #1149.

17 years agoRemove more redundant FD conversions
Ian Lynagh [Tue, 20 Feb 2007 09:25:20 +0000 (09:25 +0000)]
Remove more redundant FD conversions

17 years agoFix FD changes on Windows
Ian Lynagh [Tue, 20 Feb 2007 09:15:16 +0000 (09:15 +0000)]
Fix FD changes on Windows

17 years agoConsistently use CInt rather than Int for FDs
Ian Lynagh [Mon, 19 Feb 2007 23:38:54 +0000 (23:38 +0000)]
Consistently use CInt rather than Int for FDs

17 years agoFix the types of minView/maxView (ticket #1134)
jeanphilippe.bernardy@gmail.com [Sat, 10 Feb 2007 06:51:15 +0000 (06:51 +0000)]
Fix the types of minView/maxView (ticket #1134)

17 years agofix for hashString, from Jan-Willem Maessen (see #1137)
Simon Marlow [Thu, 15 Feb 2007 09:43:04 +0000 (09:43 +0000)]
fix for hashString, from Jan-Willem Maessen (see #1137)

17 years agofix to getUSecOfDay(): arithmetic was overflowing
Simon Marlow [Wed, 14 Feb 2007 16:17:19 +0000 (16:17 +0000)]
fix to getUSecOfDay(): arithmetic was overflowing

17 years agoThe Windows counterpart to 'wrapround of thread delays'
Ian Lynagh [Fri, 9 Feb 2007 17:35:10 +0000 (17:35 +0000)]
The Windows counterpart to 'wrapround of thread delays'

17 years agowrapround of thread delays
Neil Davies [Mon, 29 Jan 2007 16:05:19 +0000 (16:05 +0000)]
wrapround of thread delays

  * made the wrapround of the underlying O/S occur before the wrapround
    of the delayed threads by making threads delay in microseconds since
    O/S epoch (1970 - Unix, 1601 - Windows) stored in Word64.
  * removed redundant calls reading O/S realtime clock
  * removed rounding to 1/50th of sec for timers
  * Only for Unix version of scheduler.

17 years agoWhitespace changes only
Ian Lynagh [Tue, 6 Feb 2007 23:27:22 +0000 (23:27 +0000)]
Whitespace changes only

17 years agoAdd some type sigs
Ian Lynagh [Tue, 6 Feb 2007 23:24:39 +0000 (23:24 +0000)]
Add some type sigs

17 years agoUse static inline rather than extern inline/inline
Ian Lynagh [Mon, 5 Feb 2007 20:36:28 +0000 (20:36 +0000)]
Use static inline rather than extern inline/inline
I understand this is more portable, and it also fixes warnings when
C things we are wrapping are themselves static inlines (which FD_ISSET
is on ppc OS X).

17 years agoadd derived instances for Dual monoid
Ross Paterson [Fri, 2 Feb 2007 19:08:47 +0000 (19:08 +0000)]
add derived instances for Dual monoid

17 years agoadd doc pointers to Foldable
Ross Paterson [Fri, 2 Feb 2007 11:09:31 +0000 (11:09 +0000)]
add doc pointers to Foldable

Could be applied to STABLE.

17 years agoEliminate some warnings
Ian Lynagh [Sat, 29 Jul 2006 22:08:54 +0000 (22:08 +0000)]
Eliminate some warnings
Eliminate warnings in the libraries caused by mixing pattern matching
with numeric literal matching.

17 years agoRemove IsString(fromString) from the Prelude
Ian Lynagh [Tue, 30 Jan 2007 12:41:36 +0000 (12:41 +0000)]
Remove IsString(fromString) from the Prelude

17 years agoAdd Kleisli composition
Don Stewart [Mon, 13 Nov 2006 01:54:42 +0000 (01:54 +0000)]
Add Kleisli composition

17 years agoIsString is GHC-only (so why is it in the Prelude?)
Ross Paterson [Tue, 23 Jan 2007 18:30:07 +0000 (18:30 +0000)]
IsString is GHC-only (so why is it in the Prelude?)

17 years agoApplicative and Monad instances for Tree
Ross Paterson [Mon, 15 Jan 2007 17:45:10 +0000 (17:45 +0000)]
Applicative and Monad instances for Tree

17 years agoAdd IsString class for overloaded string literals.
lennart@augustsson.net [Thu, 21 Dec 2006 21:05:32 +0000 (21:05 +0000)]
Add IsString class for overloaded string literals.

17 years agoAdded examples, more detailed documentation to Data.List Extracting sublists functions
Andriy Palamarchuk [Mon, 4 Dec 2006 16:47:10 +0000 (16:47 +0000)]
Added examples, more detailed documentation to Data.List Extracting sublists functions

17 years agofix threadDelay
Simon Marlow [Wed, 17 Jan 2007 09:17:02 +0000 (09:17 +0000)]
fix threadDelay
In "Add support for the IO manager thread" I accidentally spammed part
of "Make sure the threaded threadDelay sleeps at least as long as it
is asked", which is why the ThreadDelay001 test has been failing.

17 years agoupdate section on "blocking"
Simon Marlow [Tue, 16 Jan 2007 12:43:28 +0000 (12:43 +0000)]
update section on "blocking"

17 years agoFix crash with (minBound :: Int*) `div (-1) as result is maxBound + 1.
Ian Lynagh [Mon, 15 Jan 2007 14:20:05 +0000 (14:20 +0000)]
Fix crash with   (minBound :: Int*) `div (-1)   as result is maxBound + 1.