mirror of
https://github.com/python/cpython.git
synced 2025-08-24 02:35:59 +00:00
gh-111968: Use per-thread freelists for PyContext in free-threading (gh-114122)
This commit is contained in:
parent
d2d8332f71
commit
867f59f234
9 changed files with 32 additions and 48 deletions
|
@ -1461,6 +1461,7 @@ _Py_ClearFreeLists(_PyFreeListState *state, int is_finalization)
|
|||
_PyFloat_ClearFreeList(state, is_finalization);
|
||||
_PyTuple_ClearFreeList(state, is_finalization);
|
||||
_PyList_ClearFreeList(state, is_finalization);
|
||||
_PyContext_ClearFreeList(state, is_finalization);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue