X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;ds=sidebyside;f=ghc%2Frts%2FWeak.c;h=ccb9eb2e2a63207eaeb7cbe3e3e4082429877502;hb=423d477bfecd490de1449c59325c8776f91d7aac;hp=bc5cb2b94c152d61e4891d52d7c7dfe627995886;hpb=74b46a5d5f59fbeba0e35bd5a6ba685e9efd2b8e;p=ghc-hetmet.git diff --git a/ghc/rts/Weak.c b/ghc/rts/Weak.c index bc5cb2b..ccb9eb2 100644 --- a/ghc/rts/Weak.c +++ b/ghc/rts/Weak.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: Weak.c,v 1.28 2003/03/17 14:47:48 simonmar Exp $ + * $Id: Weak.c,v 1.32 2004/08/13 13:11:13 simonmar Exp $ * * (c) The GHC Team, 1998-1999 * @@ -14,6 +14,7 @@ #include "RtsFlags.h" #include "Weak.h" #include "Storage.h" +#include "Schedule.h" #include "Prelude.h" #include "RtsAPI.h" @@ -34,28 +35,20 @@ finalizeWeakPointersNow(void) { StgWeak *w; -#if defined(RTS_SUPPORTS_THREADS) rts_lock(); -#endif while ((w = weak_ptr_list)) { weak_ptr_list = w->link; if (w->header.info != &stg_DEAD_WEAK_info) { - w->header.info = &stg_DEAD_WEAK_info; + SET_HDR(w, &stg_DEAD_WEAK_info, w->header.prof.ccs); IF_DEBUG(weak,fprintf(stderr,"Finalising weak pointer at %p -> %p\n", w, w->key)); if (w->finalizer != &stg_NO_FINALIZER_closure) { -#if defined(RTS_SUPPORTS_THREADS) - rts_evalIO(w->finalizer,NULL); + rts_evalLazyIO(w->finalizer,NULL); rts_unlock(); rts_lock(); -#else - rts_mainLazyIO(w->finalizer,NULL); -#endif } } } -#if defined(RTS_SUPPORTS_THREADS) rts_unlock(); -#endif } /* @@ -113,6 +106,7 @@ scheduleFinalizers(StgWeak *list) arr = (StgMutArrPtrs *)allocate(sizeofW(StgMutArrPtrs) + n); TICK_ALLOC_PRIM(sizeofW(StgMutArrPtrs), n, 0); SET_HDR(arr, &stg_MUT_ARR_PTRS_FROZEN_info, CCS_SYSTEM); + arr->mut_link = NULL; arr->ptrs = n; n = 0;