X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=rts%2FRetainerProfile.c;fp=rts%2FRetainerProfile.c;h=b17f24f7b4a932e3b930fbe707d1e39422f69787;hp=dec886aba6ef097a46513e287424a87567eb40e8;hb=f86e7206ea94b48b94fb61007a1c5d55b8c60f45;hpb=ae267d04df855051b99218e3712b3f56b8016d56 diff --git a/rts/RetainerProfile.c b/rts/RetainerProfile.c index dec886a..b17f24f 100644 --- a/rts/RetainerProfile.c +++ b/rts/RetainerProfile.c @@ -1800,7 +1800,7 @@ inner_loop: * Compute the retainer set for every object reachable from *tl. * -------------------------------------------------------------------------- */ static void -retainRoot( StgClosure **tl ) +retainRoot(void *user STG_UNUSED, StgClosure **tl) { StgClosure *c; @@ -1837,7 +1837,7 @@ computeRetainerSet( void ) RetainerSet tmpRetainerSet; #endif - GetRoots(retainRoot); // for scheduler roots + markCapabilities(retainRoot, NULL); // for scheduler roots // This function is called after a major GC, when key, value, and finalizer // all are guaranteed to be valid, or reachable. @@ -1846,10 +1846,10 @@ computeRetainerSet( void ) // for retainer profilng. for (weak = weak_ptr_list; weak != NULL; weak = weak->link) // retainRoot((StgClosure *)weak); - retainRoot((StgClosure **)&weak); + retainRoot((StgClosure **)&weak, NULL); // Consider roots from the stable ptr table. - markStablePtrTable(retainRoot); + markStablePtrTable(retainRoot, NULL); // The following code resets the rs field of each unvisited mutable // object (computing sumOfNewCostExtra and updating costArray[] when