bpo-36710: Add runtime parameter to _PyThreadState_Init() by vstinner · Pull Request #12935 · python/cpython
static void _PyGILState_NoteThreadState(PyThreadState* tstate); /* Forward declaration */ static void _PyGILState_NoteThreadState( struct _gilstate_runtime_state *gilstate, PyThreadState* tstate);
_PyInitError _PyInterpreterState_Enable(_PyRuntimeState *runtime)
if (_PyThreadState_GetFrame == NULL) if (_PyThreadState_GetFrame == NULL) { _PyThreadState_GetFrame = threadstate_getframe; }
if (tstate != NULL) { tstate->interp = interp;
tstate->frame = NULL; tstate->recursion_depth = 0; tstate->overflowed = 0; tstate->recursion_critical = 0; tstate->stackcheck_counter = 0; tstate->tracing = 0; tstate->use_tracing = 0; tstate->gilstate_counter = 0; tstate->async_exc = NULL; tstate->thread_id = PyThread_get_thread_ident(); tstate->interp = interp;
tstate->dict = NULL; tstate->frame = NULL; tstate->recursion_depth = 0; tstate->overflowed = 0; tstate->recursion_critical = 0; tstate->stackcheck_counter = 0; tstate->tracing = 0; tstate->use_tracing = 0; tstate->gilstate_counter = 0; tstate->async_exc = NULL; tstate->thread_id = PyThread_get_thread_ident();
tstate->curexc_type = NULL; tstate->curexc_value = NULL; tstate->curexc_traceback = NULL; tstate->dict = NULL;
tstate->exc_state.exc_type = NULL; tstate->exc_state.exc_value = NULL; tstate->exc_state.exc_traceback = NULL; tstate->exc_state.previous_item = NULL; tstate->exc_info = &tstate->exc_state; tstate->curexc_type = NULL; tstate->curexc_value = NULL; tstate->curexc_traceback = NULL;
tstate->c_profilefunc = NULL; tstate->c_tracefunc = NULL; tstate->c_profileobj = NULL; tstate->c_traceobj = NULL; tstate->exc_state.exc_type = NULL; tstate->exc_state.exc_value = NULL; tstate->exc_state.exc_traceback = NULL; tstate->exc_state.previous_item = NULL; tstate->exc_info = &tstate->exc_state;
tstate->trash_delete_nesting = 0; tstate->trash_delete_later = NULL; tstate->on_delete = NULL; tstate->on_delete_data = NULL; tstate->c_profilefunc = NULL; tstate->c_tracefunc = NULL; tstate->c_profileobj = NULL; tstate->c_traceobj = NULL;
tstate->coroutine_origin_tracking_depth = 0; tstate->trash_delete_nesting = 0; tstate->trash_delete_later = NULL; tstate->on_delete = NULL; tstate->on_delete_data = NULL;
tstate->coroutine_wrapper = NULL; tstate->in_coroutine_wrapper = 0; tstate->coroutine_origin_tracking_depth = 0;
tstate->async_gen_firstiter = NULL; tstate->async_gen_finalizer = NULL; tstate->coroutine_wrapper = NULL; tstate->in_coroutine_wrapper = 0;
tstate->context = NULL; tstate->context_ver = 1; tstate->async_gen_firstiter = NULL; tstate->async_gen_finalizer = NULL;
tstate->id = ++interp->tstate_next_unique_id; tstate->context = NULL; tstate->context_ver = 1;
if (init) _PyThreadState_Init(tstate); tstate->id = ++interp->tstate_next_unique_id;
HEAD_LOCK(); tstate->prev = NULL; tstate->next = interp->tstate_head; if (tstate->next) tstate->next->prev = tstate; interp->tstate_head = tstate; HEAD_UNLOCK(); if (init) { _PyThreadState_Init(&_PyRuntime, tstate); }
HEAD_LOCK(); tstate->prev = NULL; tstate->next = interp->tstate_head; if (tstate->next) tstate->next->prev = tstate; interp->tstate_head = tstate; HEAD_UNLOCK();
return tstate; }
void _PyThreadState_Init(PyThreadState *tstate) _PyThreadState_Init(_PyRuntimeState *runtime, PyThreadState *tstate) { _PyGILState_NoteThreadState(tstate); _PyGILState_NoteThreadState(&runtime->gilstate, tstate); }
PyObject*
_PyRuntimeState *runtime = &_PyRuntime; struct _gilstate_runtime_state *gilstate = &runtime->gilstate;
if (PyThread_tss_create(&gilstate->autoTSSkey) != 0) { Py_FatalError("Could not allocate TSS entry"); } _PyRuntime.gilstate.autoInterpreterState = i; assert(PyThread_tss_get(&_PyRuntime.gilstate.autoTSSkey) == NULL); assert(t->gilstate_counter == 0); gilstate->autoInterpreterState = interp; assert(PyThread_tss_get(&gilstate->autoTSSkey) == NULL); assert(tstate->gilstate_counter == 0);
_PyGILState_NoteThreadState(t); _PyGILState_NoteThreadState(gilstate, tstate); }
PyInterpreterState *
/* Stick the thread state for this thread in thread specific storage.