summaryrefslogtreecommitdiffstats
path: root/Python/thread_pthread_stubs.h
Commit message (Collapse)AuthorAgeFilesLines
* GH-110829: Ensure Thread.join() joins the OS thread (#110848)Antoine Pitrou2023-11-041-0/+9
| | | | | | | Joining a thread now ensures the underlying OS thread has exited. This is required for safer fork() in multi-threaded processes. --------- Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
* gh-108765: Cleanup #include in Python/*.c files (#108977)Victor Stinner2023-09-061-1/+1
| | | Mention one symbol imported by each #include.
* gh-81057: Move Threading-Related Globals to _PyRuntimeState (#100084)Eric Snow2022-12-091-6/+3
| | | https://github.com/python/cpython/issues/81057
* gh-95174: Add pthread stubs for WASI (GH-95234)Christian Heimes2022-07-271-0/+185
Co-authored-by: Brett Cannon <brett@python.org>