| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | gh-110014: Remove PY_TIMEOUT_MAX from limited C API (#110217) | Victor Stinner | 2023-10-02 | 1 | -0/+8 |
| | | | | | | | | | If the timeout is greater than PY_TIMEOUT_MAX, PyThread_acquire_lock_timed() uses a timeout of PY_TIMEOUT_MAX microseconds, which is around 280.6 years. This case is unlikely and limiting a timeout to 280.6 years sounds like a reasonable trade-off. The constant PY_TIMEOUT_MAX is not used in PyPI top 5,000 projects. | ||||
| * | gh-106320: Remove private _PyThread_at_fork_reinit() function (#108601) | Victor Stinner | 2023-08-29 | 1 | -7/+0 |
| | | | | | Move the private function to the internal C API (pycore_pythread.h) and no longer exports it. | ||||
| * | gh-95174: Add pthread stubs for WASI (GH-95234) | Christian Heimes | 2022-07-27 | 1 | -0/+3 |
| | | | | Co-authored-by: Brett Cannon <brett@python.org> | ||||
| * | gh-79315: Add Include/cpython/pythread.h header (#91798) | Victor Stinner | 2022-04-21 | 1 | -0/+39 |
