Home
last modified time | relevance | path

Searched refs:on_delete (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Include/cpython/
Dpystate.h134 void (*on_delete)(void *); member
/third_party/python/Modules/
D_threadmodule.c1324 assert(tstate->on_delete == &release_sentinel); in thread__set_sentinel()
1326 tstate->on_delete = NULL; in thread__set_sentinel()
1341 tstate->on_delete = &release_sentinel; in thread__set_sentinel()
/third_party/python/Python/
Dpystate.c654 tstate->on_delete = NULL; in new_threadstate()
875 if (tstate->on_delete != NULL) { in PyThreadState_Clear()
876 tstate->on_delete(tstate->on_delete_data); in PyThreadState_Clear()
/third_party/python/Misc/NEWS.d/
D3.9.0a4.rst925 :c:member:`PyThreadState.on_delete` callback. Previously, that happened in
/third_party/python/Doc/c-api/
Dinit.rst1093 This function now calls the :c:member:`PyThreadState.on_delete` callback.