Home
last modified time | relevance | path

Searched refs:autoTSSkey (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Python/
Dpystate.c51 runtime->gilstate.autoTSSkey = initial; in _PyRuntimeState_Init_impl()
634 PyThread_tss_get(&_PyRuntime.gilstate.autoTSSkey) == tstate) in PyThreadState_Delete()
636 PyThread_tss_set(&_PyRuntime.gilstate.autoTSSkey, NULL); in PyThreadState_Delete()
651 PyThread_tss_get(&_PyRuntime.gilstate.autoTSSkey) == tstate) in PyThreadState_DeleteCurrent()
653 PyThread_tss_set(&_PyRuntime.gilstate.autoTSSkey, NULL); in PyThreadState_DeleteCurrent()
910 if (PyThread_tss_create(&_PyRuntime.gilstate.autoTSSkey) != 0) { in _PyGILState_Init()
914 assert(PyThread_tss_get(&_PyRuntime.gilstate.autoTSSkey) == NULL); in _PyGILState_Init()
929 PyThread_tss_delete(&_PyRuntime.gilstate.autoTSSkey); in _PyGILState_Fini()
954 PyThread_tss_delete(&_PyRuntime.gilstate.autoTSSkey); in _PyGILState_Reinit()
955 if (PyThread_tss_create(&_PyRuntime.gilstate.autoTSSkey) != 0) { in _PyGILState_Reinit()
[all …]
/external/python/cpython3/Include/internal/
Dpystate.h29 Py_tss_t autoTSSkey; member