mirror of
https://github.com/python/cpython.git
synced 2025-09-10 10:47:34 +00:00
GH-110455: Guard assert(tstate->thread_id > 0)
with #ifndef HAVE_PTHREAD_STUBS
(GH-110487)
This commit is contained in:
parent
f013b47504
commit
5fd8821cf8
2 changed files with 5 additions and 2 deletions
|
@ -0,0 +1,3 @@
|
||||||
|
Guard ``assert(tstate->thread_id > 0)`` with ``#ifndef HAVE_PTHREAD_STUBS``.
|
||||||
|
This allows for for pydebug builds to work under WASI which (currently)
|
||||||
|
lacks thread support.
|
|
@ -263,10 +263,10 @@ static void
|
||||||
unbind_tstate(PyThreadState *tstate)
|
unbind_tstate(PyThreadState *tstate)
|
||||||
{
|
{
|
||||||
assert(tstate != NULL);
|
assert(tstate != NULL);
|
||||||
// XXX assert(tstate_is_alive(tstate));
|
|
||||||
assert(tstate_is_bound(tstate));
|
assert(tstate_is_bound(tstate));
|
||||||
// XXX assert(!tstate->_status.active);
|
#ifndef HAVE_PTHREAD_STUBS
|
||||||
assert(tstate->thread_id > 0);
|
assert(tstate->thread_id > 0);
|
||||||
|
#endif
|
||||||
#ifdef PY_HAVE_THREAD_NATIVE_ID
|
#ifdef PY_HAVE_THREAD_NATIVE_ID
|
||||||
assert(tstate->native_thread_id > 0);
|
assert(tstate->native_thread_id > 0);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue