From: simonmar Date: Mon, 19 Mar 2001 10:25:32 +0000 (+0000) Subject: [project @ 2001-03-19 10:23:45 by simonmar] X-Git-Tag: Approximately_9120_patches~2382 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=01a245f8b23015b70c1064299c23d7386198e8e0;p=ghc-hetmet.git [project @ 2001-03-19 10:23:45 by simonmar] PutFullMVar went away --- diff --git a/ghc/driver/PackageSrc.hs b/ghc/driver/PackageSrc.hs index fcd545c..f774708 100644 --- a/ghc/driver/PackageSrc.hs +++ b/ghc/driver/PackageSrc.hs @@ -96,7 +96,6 @@ package_details installing = , "PrelIOBase_stackOverflow_closure" , "PrelIOBase_heapOverflow_closure" , "PrelIOBase_NonTermination_closure" - , "PrelIOBase_PutFullMVar_closure" , "PrelIOBase_BlockedOnDeadMVar_closure" , "PrelWeak_runFinalizzerBatch_closure" , "__init_Prelude" diff --git a/ghc/rts/HSprel.def b/ghc/rts/HSprel.def index 691ea5b..56e4718 100644 --- a/ghc/rts/HSprel.def +++ b/ghc/rts/HSprel.def @@ -22,7 +22,6 @@ PrelStable_StablePtr_static_info DATA PrelPack_unpackCString_closure PrelIOBase_stackOverflow_closure PrelIOBase_BlockedOnDeadMVar_closure -PrelIOBase_PutFullMVar_closure PrelIOBase_NonTermination_closure PrelWeak_runFinalizzerBatch_closure __init_Prelude diff --git a/ghc/rts/Prelude.h b/ghc/rts/Prelude.h index d251340..5bdd82e 100644 --- a/ghc/rts/Prelude.h +++ b/ghc/rts/Prelude.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Prelude.h,v 1.15 2001/02/14 12:59:34 simonmar Exp $ + * $Id: Prelude.h,v 1.16 2001/03/19 10:24:03 simonmar Exp $ * * (c) The GHC Team, 1998-2001 * @@ -22,7 +22,6 @@ extern const StgClosure PrelMain_mainIO_closure; extern DLL_IMPORT const StgClosure PrelIOBase_stackOverflow_closure; extern DLL_IMPORT const StgClosure PrelIOBase_heapOverflow_closure; -extern DLL_IMPORT const StgClosure PrelIOBase_PutFullMVar_closure; extern DLL_IMPORT const StgClosure PrelIOBase_BlockedOnDeadMVar_closure; extern DLL_IMPORT const StgClosure PrelIOBase_NonTermination_closure;