HomeSort by relevance Sort by last modified time
    Searched refs:current_tstate (Results 1 - 3 of 3) sorted by null

  /external/python/cpython3/Include/
traceback.h 66 If current_tstate is NULL, the function tries to get the Python thread state
74 It is better to pass NULL to interp and current_tstate, the function tries
82 PyThreadState *current_tstate);
  /external/python/cpython3/Python/
traceback.c 848 PyThreadState *current_tstate)
853 if (current_tstate == NULL) {
865 current_tstate = PyGILState_GetThisThreadState();
869 if (current_tstate == NULL) {
877 interp = current_tstate->interp;
899 write_thread_id(fd, tstate, tstate == current_tstate);
ceval.c 226 PyThreadState *current_tstate = PyThreadState_GET(); local
232 take_gil(current_tstate);
236 _PyThreadState_DeleteExcept(current_tstate);
    [all...]

Completed in 742 milliseconds