- Sep 13, 1999
-
-
Simon Marlow authored
GHC's web pages have moved to http://www.haskell.org/ghc/.
-
sof authored
updated
-
sof authored
Only use initUserSignals() if you've got it defined
-
sof authored
GMP only depends on libiberty for the implementation of random(). Avoid this dep. on a (pure) Win32 platform.
-
sof authored
Win32 version of awaitEvent(). Easy :)
-
Simon Marlow authored
oops, back out last change. It was already there.
-
Simon Marlow authored
Fix building with profiling.
-
- Sep 12, 1999
-
-
sof authored
In case of a partial writes, buffer pointer wasn't being adjusted/used.
-
sof authored
DLL install support
-
sof authored
If DLL support enabled, add import libs to INSTALL_LIBS + DLL to INSTALL_PROGS
-
sof authored
inputReady() and mingw - always return 1, not 0
-
sof authored
Export toInt and fromInt from Int as well as from the (now uncool) rag-bag that is GlaExts, since Hugs supports them too.
-
sof authored
s/ZONE/get_ZONE/g
-
sof authored
Re-ordered code so that the POSIX-blessed time() is used in preference to the plethora of other clock reading calls. This *should* be an OK and non-upsetting change, but idiosyncracies of OS-supplied header files may just force me to rethink. We'll see..
-
sof authored
Let's try again - added get_ZONE(), which retrieves current timezone string. Need to do this since cygwin doesn't initialise its tzname[] properly (=> need to call tzset() explicitly.)
-
sof authored
timezone.h
-
- Sep 11, 1999
-
-
sof authored
Experimental support for re-routeing I/O on a Handle to that of another for the duration of an IO action. Used to provide the following three (exported) actions withStdin, withStdout, withStderr :: Handle -> IO a -> IO a which 'replaces' one of the standard handles with that of the supplied handle while performing the second action.
-
sof authored
Documented Select interface ; removed old Pretty doc
-
sof authored
Added hSelect
-
- Sep 10, 1999
-
-
Simon Marlow authored
Fix run queue corruption bug, introduced in recent threadWait commit. This fixes the "memo002 goes off into outer space" bug.
-
- Sep 06, 1999
-
-
Simon Marlow authored
fromInt stuff
-
Simon Marlow authored
fromInt stuff
-
Simon Marlow authored
Add parse error/layout test.
-
Simon Marlow authored
Report layout parse errors as File.hs:10: parse error (possibly incorrect indentation)
-
Simon Marlow authored
Add test for line numbers/string gaps.
-
Simon Marlow authored
fix line number discrepancy w/ string gaps.
-
Simon Marlow authored
fromInt update.
-
Simon Marlow authored
get fromInt from the right place.
-
- Sep 01, 1999
-
-
sof authored
qualified import reg. test
-
sof authored
updated
-
sof authored
Verify that 'as' clause without 'qualified' brings both qual and unqual'ed name into scope
-
sof authored
Test which verifies that special ids are correctly handled by the front-end
-
sof authored
FFI decl tests
-
sof authored
If -noC is used, don't compile the foreign-export C stubs
-
sof authored
* On foreign decls, "ext_name"s are now optional. If missing, the ext_name is made equal to the Haskell name. * Half a dozen special-ids were incorrectly handled when occurring as tyvars.
-
- Aug 31, 1999
-
-
Simon Peyton Jones authored
Fix default Enum methods
-
Simon Peyton Jones authored
Fix preInlineUnconditionally and postInlineUnconditionally, so they respect the black list
-
Simon Peyton Jones authored
Small changes to concurrency documentation
-
- Aug 30, 1999
-
-
Simon Peyton Jones authored
Adjust library imports to get fromInt/toInt from PrelNum
-
Simon Peyton Jones authored
Num( fromInt ) and Integral( toInt ) are not Haskell 98, and so they should be exposed only by GlaExts, not by Prelude.
-