@@ -324,6 +324,23 @@ merge_all_queued_objects(PyInterpreterState *interp, struct collection_state *st
324
324
HEAD_UNLOCK (& _PyRuntime );
325
325
}
326
326
327
+ static void
328
+ process_delayed_frees (PyInterpreterState * interp )
329
+ {
330
+ // In STW status, we can observe the latest write sequence by
331
+ // advancing the write sequence immediately.
332
+ _Py_qsbr_advance (& interp -> qsbr );
333
+ _PyThreadStateImpl * current_tstate = (_PyThreadStateImpl * )_PyThreadState_GET ();
334
+ _Py_qsbr_quiescent_state (current_tstate -> qsbr );
335
+ HEAD_LOCK (& _PyRuntime );
336
+ PyThreadState * tstate = interp -> threads .head ;
337
+ while (tstate != NULL ) {
338
+ _PyMem_ProcessDelayed (tstate );
339
+ tstate = (PyThreadState * )tstate -> next ;
340
+ }
341
+ HEAD_UNLOCK (& _PyRuntime );
342
+ }
343
+
327
344
// Subtract an incoming reference from the computed "gc_refs" refcount.
328
345
static int
329
346
visit_decref (PyObject * op , void * arg )
@@ -1006,6 +1023,7 @@ gc_collect_internal(PyInterpreterState *interp, struct collection_state *state)
1006
1023
_PyEval_StopTheWorld (interp );
1007
1024
// merge refcounts for all queued objects
1008
1025
merge_all_queued_objects (interp , state );
1026
+ process_delayed_frees (interp );
1009
1027
1010
1028
// Find unreachable objects
1011
1029
int err = deduce_unreachable_heap (interp , state );
0 commit comments