Lines Matching defs:tstate
132 unsigned long thread_id; /* Thread id where this tstate was created */
134 /* Native thread id where this tstate was created. This will be 0 except on
146 * Thread.join() must wait for the join'ed thread's tstate to be unlinked
147 * from the tstate chain. That happens at the end of a thread's life,
149 * The obvious way doesn't quite work: create a lock which the tstate
158 * So instead of holding the lock directly, the tstate holds a weakref to
162 * After the tstate is unlinked, release_sentinel is called with the
217 PyAPI_FUNC(PyObject *) _PyThreadState_GetDict(PyThreadState *tstate);
220 PyAPI_FUNC(void) PyThreadState_EnterTracing(PyThreadState *tstate);
224 PyAPI_FUNC(void) PyThreadState_LeaveTracing(PyThreadState *tstate);
264 typedef PyObject* (*_PyFrameEvalFunction)(PyThreadState *tstate, struct _PyInterpreterFrame *, int);