From 7ba6697cd124f57b45ded984fc20fdd7082aeafe Mon Sep 17 00:00:00 2001 From: simonmar Date: Thu, 30 Mar 2000 10:36:15 +0000 Subject: [PATCH] [project @ 2000-03-30 10:36:15 by simonmar] Replace _static_closures with _closures. --- ghc/rts/Prelude.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ghc/rts/Prelude.h b/ghc/rts/Prelude.h index 8bb811a..ccbbe3b 100644 --- a/ghc/rts/Prelude.h +++ b/ghc/rts/Prelude.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Prelude.h,v 1.7 2000/03/28 10:10:17 andy Exp $ + * $Id: Prelude.h,v 1.8 2000/03/30 10:36:15 simonmar Exp $ * * (c) The GHC Team, 1998-2000 * @@ -74,12 +74,12 @@ extern DLL_IMPORT const StgInfoTable PrelStable_StablePtr_con_info; /* We need indirections to the Prelude stuff, because we can't link * these symbols statically. */ -extern const StgClosure *ind_True_static_closure; -extern const StgClosure *ind_False_static_closure; +extern const StgClosure *ind_True_closure; +extern const StgClosure *ind_False_closure; extern const StgClosure *ind_unpackCString_closure; extern const StgClosure *ind_stackOverflow_closure; extern const StgClosure *ind_heapOverflow_closure; -extern const StgClosure *ind_PutFullMVar_static_closure; +extern const StgClosure *ind_PutFullMVar_closure; extern const StgClosure *ind_BlockedOnDeadMVar_closure; extern const StgClosure *ind_NonTermination_closure; @@ -100,11 +100,11 @@ extern const StgInfoTable *ind_W64zh_con_info; extern const StgInfoTable *ind_StablePtr_static_info; extern const StgInfoTable *ind_StablePtr_con_info; -#define True_closure ind_True_static_closure -#define False_closure ind_False_static_closure +#define True_closure ind_True_closure +#define False_closure ind_False_closure #define stackOverflow_closure ind_stackOverflow_closure #define heapOverflow_closure ind_heapOverflow_closure -#define PutFullMVar_closure ind_PutFullMVar_static_closure +#define PutFullMVar_closure ind_PutFullMVar_closure #define BlockedOnDeadMVar_closure ind_BlockedOnDeadMVar_closure #define NonTermination_closure ind_NonTermination_closure #define Czh_static_info ind_Czh_static_info -- 1.7.10.4