From f5e2a3790c3bf6de8eda68e44efe4a2fdce310e7 Mon Sep 17 00:00:00 2001 From: panne Date: Sat, 21 Aug 2004 12:48:00 +0000 Subject: [PATCH] [project @ 2004-08-21 12:48:00 by panne] Perform initialisation of adjustor thunk layer at startup. --- ghc/rts/RtsStartup.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc/rts/RtsStartup.c b/ghc/rts/RtsStartup.c index 59300c4..89fb4a4 100644 --- a/ghc/rts/RtsStartup.c +++ b/ghc/rts/RtsStartup.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: RtsStartup.c,v 1.81 2004/08/13 13:10:32 simonmar Exp $ + * $Id: RtsStartup.c,v 1.82 2004/08/21 12:48:00 panne Exp $ * * (c) The GHC Team, 1998-2002 * @@ -147,6 +147,9 @@ hs_init(int *argc, char **argv[]) synchroniseSystem(); // calls initParallelSystem etc #endif /* PAR */ + /* Perform initialisation of adjustor thunk layer. */ + initAdjustor(); + /* initialise scheduler data structures (needs to be done before * initStorage()). */ -- 1.7.10.4