We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
_Py_THREAD_SUSPENDED
The detach_thread function should set the state to the detached_state argument, but currently that argument is unused.
detach_thread
detached_state
cpython/Python/pystate.c
Lines 1925 to 1941 in d2f1b0e
The text was updated successfully, but these errors were encountered:
pythongh-116396: Pass "detached_state" argument to tstate_set_detached
9e36885
The stop-the-world code was incorrectly setting suspended threads' states to _Py_THREAD_DETACHED instead of _Py_THREAD_SUSPENDED.
20f08a0
Merge branch 'pythongh-116396-stop-the-world' into nogil-integration
efa15ce
gh-116396: Pass "detached_state" argument to tstate_set_detached (#11…
834bf57
…6398) The stop-the-world code was incorrectly setting suspended threads' states to _Py_THREAD_DETACHED instead of _Py_THREAD_SUSPENDED.
pythongh-116396: Pass "detached_state" argument to tstate_set_detached (
44f6efb
python#116398) The stop-the-world code was incorrectly setting suspended threads' states to _Py_THREAD_DETACHED instead of _Py_THREAD_SUSPENDED.
34a81f1
colesbury
No branches or pull requests
Bug report
The
detach_thread
function should set the state to thedetached_state
argument, but currently that argument is unused.cpython/Python/pystate.c
Lines 1925 to 1941 in d2f1b0e
Linked PRs
The text was updated successfully, but these errors were encountered: