Skip to content

rts: Unglobalize dead_weak_ptr_list and resurrected_threads

Ben Gamari requested to merge wip/gc/unglobalize-gc-state into master

In the concurrent nonmoving collector we will need the ability to call traverseWeakPtrList concurrently with minor generation collections. This global state stands in the way of this. However, refactoring it away is straightforward since this list only persists the length of a single GC.

Merge request reports