Home
last modified time | relevance | path

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

/third_party/python/Python/
Dpystate.c631 tstate->gilstate_counter = 0; in new_threadstate()
1363 assert(tstate->gilstate_counter == 0); in _PyGILState_SetTstate()
1444 tstate->gilstate_counter = 1; in _PyGILState_NoteThreadState()
1511 tcur->gilstate_counter = 0; in PyGILState_Ensure()
1527 ++tcur->gilstate_counter; in PyGILState_Ensure()
1553 --tstate->gilstate_counter; in PyGILState_Release()
1554 assert(tstate->gilstate_counter >= 0); /* illegal counter value */ in PyGILState_Release()
1559 if (tstate->gilstate_counter == 0) { in PyGILState_Release()
/third_party/python/Include/cpython/
Dpystate.h103 int gilstate_counter; member