Lines Matching defs:gstate
3082 PyGILState_STATE gstate;
3086 gstate = PyGILState_Ensure ();
3088 log->Printf("Ensured PyGILState. Previous state = %slocked\n", gstate == PyGILState_UNLOCKED ? "un" : "");
3138 log->Printf("Releasing PyGILState. Returning to state = %slocked\n", gstate == PyGILState_UNLOCKED ? "un" : "");
3139 PyGILState_Release (gstate);