summaryrefslogtreecommitdiff
path: root/rts/sm/GC.c
diff options
context:
space:
mode:
Diffstat (limited to 'rts/sm/GC.c')
-rw-r--r--rts/sm/GC.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/rts/sm/GC.c b/rts/sm/GC.c
index 22b29cf48d..e60fb314d8 100644
--- a/rts/sm/GC.c
+++ b/rts/sm/GC.c
@@ -170,6 +170,9 @@ is requested it takes 1, when a SYNC_GC_PAR is requested it takes n_capabilities
Clearly this is in need of some tidying up, but for now we tread carefully. We
call is_par_gc() to see whether we are in a parallel or sequential collection.
+If we are in a parallel collection we iterate over gc_threads, being careful to
+account for idle caps. If we are in a sequential collection we deal only with
+the thread local gct.
Of course this is valid only inside GarbageCollect ().
Omitting this check has led to issues such as #19147.
@@ -652,7 +655,11 @@ GarbageCollect (uint32_t collect_gen,
par_balanced_copied =
(par_balanced_copied_acc - copied + other_active_threads / 2) /
other_active_threads;
+ } else {
copied += gct->copied;
+ any_work += gct->any_work;
+ scav_find_work += gct->scav_find_work;
+ max_n_todo_overflow += gct->max_n_todo_overflow;
}
}