Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update Python/ceval_gil.c
Co-authored-by: Brandt Bucher <[email protected]>
  • Loading branch information
pablogsal and brandtbucher authored Oct 8, 2022
commit 0411480e6f9d59c9b8e29a3044064b7dbf92c621
2 changes: 1 addition & 1 deletion Python/ceval_gil.c
Original file line number Diff line number Diff line change
Expand Up @@ -959,8 +959,8 @@ _Py_HandlePending(PyThreadState *tstate)
/* GC scheduled to run */
if (_Py_atomic_load_relaxed_int32(&interp_ceval_state->gc_scheduled)) {
_Py_atomic_store_relaxed(&interp_ceval_state->gc_scheduled, 0);
_Py_RunGC(tstate);
COMPUTE_EVAL_BREAKER(tstate->interp, ceval, interp_ceval_state);
_Py_RunGC(tstate);
}

/* GIL drop request */
Expand Down