| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-110014: Fix _POSIX_THREADS and _POSIX_SEMAPHORES usage (#110139) | Victor Stinner | 2023-09-30 | 1 | -4/+5 |
|
|
* | gh-101538: Add experimental wasi-threads build (#101537) | YAMAMOTO Takashi | 2023-06-22 | 1 | -0/+8 |
|
|
* | gh-81057: Fix the wasm32-wasi Buildbot (gh-100139) | Eric Snow | 2022-12-09 | 1 | -1/+2 |
|
|
* | gh-81057: Move Threading-Related Globals to _PyRuntimeState (#100084) | Eric Snow | 2022-12-09 | 1 | -11/+13 |
|
|
* | gh-95174: Add pthread stubs for WASI (GH-95234) | Christian Heimes | 2022-07-27 | 1 | -1/+3 |
|
|
* | gh-74953: _PyThread_cond_after() uses _PyTime_t (#94056) | Victor Stinner | 2022-06-21 | 1 | -26/+13 |
|
|
* | gh-74953: Reformat PyThread_acquire_lock_timed() (#93947) | Victor Stinner | 2022-06-19 | 1 | -46/+62 |
|
|
* | gh-74953: Fix PyThread_acquire_lock_timed() code recomputing the timeout (#93... | Victor Stinner | 2022-06-17 | 1 | -1/+1 |
|
|
* | gh-74953: Add _PyTime_FromMicrosecondsClamp() function (#93942) | Victor Stinner | 2022-06-17 | 1 | -16/+9 |
|
|
* | bpo-42047: Add native thread ID for DragonFlyBSD (#22714) | David CARLIER | 2022-05-18 | 1 | -0/+5 |
|
|
* | gh-88750: Remove the PYTHONTHREADDEBUG env var support. (#92509) | Gregory P. Smith | 2022-05-09 | 1 | -19/+0 |
|
|
* | bpo-46008: Move thread-related interpreter state into a sub-struct. (gh-29971) | Eric Snow | 2021-12-07 | 1 | -4/+4 |
|
|
* | bpo-41710: Add private _PyDeadline_Get() function (GH-28674) | Victor Stinner | 2021-10-01 | 1 | -10/+8 |
|
|
* | bpo-41710: PyThread_acquire_lock_timed() uses sem_clockwait() (GH-28662) | Victor Stinner | 2021-10-01 | 1 | -6/+33 |
|
|
* | bpo-41710: PyThread_acquire_lock_timed() clamps the timout (GH-28643) | Victor Stinner | 2021-09-30 | 1 | -29/+34 |
|
|
* | bpo-41710: Add _PyTime_AsTimespec_clamp() (GH-28629) | Victor Stinner | 2021-09-30 | 1 | -5/+1 |
|
|
* | bpo-34602: Quadruple stack size on macOS when compiling with UBSAN (GH-27309) | Ćukasz Langa | 2021-09-03 | 1 | -7/+6 |
|
|
* | bpo-31904: Define THREAD_STACK_SIZE for VxWorks (GH-23718) | pxinwr | 2020-12-09 | 1 | -0/+4 |
|
|
* | Fix -Wstrict-prototypes warning in thread_pthread.h. (GH-21477) | Benjamin Peterson | 2020-07-15 | 1 | -1/+1 |
|
|
* | bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509) | Victor Stinner | 2020-04-14 | 1 | -2/+2 |
|
|
* | bpo-40268: Include explicitly pycore_interp.h (GH-19505) | Victor Stinner | 2020-04-14 | 1 | -0/+1 |
|
|
* | bpo-40089: Add _at_fork_reinit() method to locks (GH-19195) | Victor Stinner | 2020-04-07 | 1 | -0/+20 |
|
|
* | Use calloc-based functions, not malloc. (GH-19152) | Andy Lester | 2020-03-25 | 1 | -2/+1 |
|
|
* | bpo-38852: Set thread stack size to 8 Mb for debug builds on android platform... | xdegaye | 2019-12-08 | 1 | -0/+10 |
|
|
* | bpo-38068: Clean up gettimeofday configure logic. (GH-15775) | Benjamin Peterson | 2019-09-10 | 1 | -8/+1 |
|
|
* | bpo-18049: Define THREAD_STACK_SIZE for AIX to pass default recursion limit t... | Michael Felt | 2019-08-03 | 1 | -0/+4 |
|
|
* | bpo-18049: Sync thread stack size to main thread size on macOS (GH-14748) | Ronald Oussoren | 2019-08-01 | 1 | -1/+2 |
|
|
* | bpo-37077: Add native thread ID (TID) for AIX (GH-13624) | Michael Felt | 2019-06-13 | 1 | -2/+7 |
|
|
* | bpo-37160: Thread native ID NetBSD support (GH-13835) | David Carlier | 2019-06-12 | 1 | -0/+5 |
|
|
* | bpo-37087: Adding native ID support for OpenBSD (GH-13654) | David Carlier | 2019-06-03 | 1 | -0/+5 |
|
|
* | bpo-36084: Add native thread ID (TID) to threading.Thread (GH-13463) | Jake Tesler | 2019-05-22 | 1 | -0/+26 |
|
|
* | Revert "bpo-36084: Add native thread ID to threading.Thread objects (GH-11993... | Victor Stinner | 2019-05-21 | 1 | -27/+0 |
|
|
* | bpo-36084: Add native thread ID to threading.Thread objects (GH-11993) | Jake Tesler | 2019-05-12 | 1 | -0/+27 |
|
|
* | bpo-36594: Fix incorrect use of %p in format strings (GH-12769) | Zackery Spytz | 2019-05-06 | 1 | -2/+2 |
|
|
* | bpo-36475: Make PyThread_exit_thread with _Py_NO_RETURN (GH-13068) | Victor Stinner | 2019-05-04 | 1 | -1/+1 |
|
|
* | bpo-12822: use monotonic clock for condvar if possible (GH-11723) | Inada Naoki | 2019-02-20 | 1 | -19/+62 |
|
|
* | bpo-33015: Fix UB in pthread PyThread_start_new_thread (GH-6008) | Siddhesh Poyarekar | 2018-11-30 | 1 | -4/+36 |
|
|
* | bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266) | Victor Stinner | 2018-11-01 | 1 | -3/+3 |
|
|
* | bpo-32593: Drop FreeBSD 9 and older support (#5232) | Victor Stinner | 2018-01-22 | 1 | -10/+0 |
|
|
* | Replace KB unit with KiB (#4293) | Victor Stinner | 2017-11-08 | 1 | -1/+1 |
|
|
* | bpo-30768: Recompute timeout on interrupted lock (GH-4103) | Victor Stinner | 2017-10-24 | 1 | -6/+49 |
|
|
* | bpo-25658: Implement PEP 539 for Thread Specific Storage (TSS) API (GH-1362) | Masayuki Yamamoto | 2017-10-06 | 1 | -3/+87 |
|
|
* | remove support for BSD/OS (closes bpo-31624) (#3812) | Benjamin Peterson | 2017-09-29 | 1 | -21/+0 |
|
|
* | bpo-30860: Consolidate stateful runtime globals. (#3397) | Eric Snow | 2017-09-08 | 1 | -4/+5 |
|
|
* | Revert "bpo-30860: Consolidate stateful runtime globals." (#3379) | Eric Snow | 2017-09-06 | 1 | -5/+4 |
|
|
* | bpo-30860: Consolidate stateful runtime globals. (#2594) | Eric Snow | 2017-09-06 | 1 | -4/+5 |
|
|
* | bpo-30832: Remove own implementation for thread-local storage (#2537) | Masayuki Yamamoto | 2017-07-03 | 1 | -1/+0 |
|
|
* | bpo-30765: Avoid blocking when PyThread_acquire_lock() is asked not to (#2403) | Antoine Pitrou | 2017-06-26 | 1 | -45/+50 |
|
|
* | bpo-6532: Make the thread id an unsigned integer. (#781) | Serhiy Storchaka | 2017-03-23 | 1 | -9/+9 |
|
|
* | bpo-29859: Fix error messages from return codes for pthread_* calls (GH-741) | Daniel Birnstiel | 2017-03-21 | 1 | -11/+13 |
|
|