aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* bpo-31904: Define THREAD_STACK_SIZE for VxWorks (GH-23718)pxinwr2020-12-091-0/+4
* Fix -Wstrict-prototypes warning in thread_pthread.h. (GH-21477)Benjamin Peterson2020-07-151-1/+1
* bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509)Victor Stinner2020-04-141-2/+2
* bpo-40268: Include explicitly pycore_interp.h (GH-19505)Victor Stinner2020-04-141-0/+1
* bpo-40089: Add _at_fork_reinit() method to locks (GH-19195)Victor Stinner2020-04-071-0/+20
* Use calloc-based functions, not malloc. (GH-19152)Andy Lester2020-03-241-2/+1
* bpo-38852: Set thread stack size to 8 Mb for debug builds on android platform...xdegaye2019-12-081-0/+10
* bpo-38068: Clean up gettimeofday configure logic. (GH-15775)Benjamin Peterson2019-09-101-8/+1
* bpo-18049: Define THREAD_STACK_SIZE for AIX to pass default recursion limit t...Michael Felt2019-08-031-0/+4
* bpo-18049: Sync thread stack size to main thread size on macOS (GH-14748)Ronald Oussoren2019-08-011-1/+2
* bpo-37077: Add native thread ID (TID) for AIX (GH-13624)Michael Felt2019-06-131-2/+7
* bpo-37160: Thread native ID NetBSD support (GH-13835)David Carlier2019-06-121-0/+5
* bpo-37087: Adding native ID support for OpenBSD (GH-13654)David Carlier2019-06-031-0/+5
* bpo-36084: Add native thread ID (TID) to threading.Thread (GH-13463)Jake Tesler2019-05-221-0/+26
* Revert "bpo-36084: Add native thread ID to threading.Thread objects (GH-11993...Victor Stinner2019-05-211-27/+0
* bpo-36084: Add native thread ID to threading.Thread objects (GH-11993)Jake Tesler2019-05-121-0/+27
* bpo-36594: Fix incorrect use of %p in format strings (GH-12769)Zackery Spytz2019-05-061-2/+2
* bpo-36475: Make PyThread_exit_thread with _Py_NO_RETURN (GH-13068)Victor Stinner2019-05-041-1/+1
* bpo-12822: use monotonic clock for condvar if possible (GH-11723)Inada Naoki2019-02-201-19/+62
* bpo-33015: Fix UB in pthread PyThread_start_new_thread (GH-6008)Siddhesh Poyarekar2018-11-301-4/+36
* bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)Victor Stinner2018-11-011-3/+3
* bpo-32593: Drop FreeBSD 9 and older support (#5232)Victor Stinner2018-01-221-10/+0
* Replace KB unit with KiB (#4293)Victor Stinner2017-11-081-1/+1
* bpo-30768: Recompute timeout on interrupted lock (GH-4103)Victor Stinner2017-10-241-6/+49
* bpo-25658: Implement PEP 539 for Thread Specific Storage (TSS) API (GH-1362)Masayuki Yamamoto2017-10-061-3/+87
* remove support for BSD/OS (closes bpo-31624) (#3812)Benjamin Peterson2017-09-281-21/+0
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-071-4/+5
* Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)Eric Snow2017-09-051-5/+4
* bpo-30860: Consolidate stateful runtime globals. (#2594)Eric Snow2017-09-051-4/+5
* bpo-30832: Remove own implementation for thread-local storage (#2537)Masayuki Yamamoto2017-07-031-1/+0
* bpo-30765: Avoid blocking when PyThread_acquire_lock() is asked not to (#2403)Antoine Pitrou2017-06-261-45/+50
* bpo-6532: Make the thread id an unsigned integer. (#781)Serhiy Storchaka2017-03-231-9/+9
* bpo-29859: Fix error messages from return codes for pthread_* calls (GH-741)Daniel Birnstiel2017-03-211-11/+13
* Issue #22206: Using pthread, PyThread_create_key() now sets errno to ENOMEM andVictor Stinner2014-08-171-1/+9
* Issue #19787: PyThread_set_key_value() now always set the valueVictor Stinner2013-12-131-3/+0
* Backout changeset 46393019b650Victor Stinner2013-12-131-0/+3
* Close #19787: PyThread_set_key_value() now always set the value. In Python 3.3,Victor Stinner2013-12-131-3/+0
* Issue #18203: Replace malloc() with PyMem_RawMalloc() to allocate thread locksVictor Stinner2013-07-071-6/+6
* Issue #18256: Compilation fix for recent AIX releases. Patch by David Edelsohn.Antoine Pitrou2013-06-181-0/+3
* Issue #16588: Silence unused-but-set warnings in Python/thread_pthread.hChristian Heimes2012-12-021-0/+3
|\
| * Issue #16588: Silence unused-but-set warnings in Python/thread_pthread.hChristian Heimes2012-12-021-0/+3
* | Signal condition variables with the mutex held. Destroy condition variablesKristján Valur Jónsson2012-06-051-6/+9
* | Issue #14184: mergeNed Deily2012-03-131-8/+12
|\|
| * Issue #14184: Increase the default stack size for secondary threads onNed Deily2012-03-131-8/+12
* | Issue #12469: partial revert of 024827a9db64, freebsd6 thread initializationVictor Stinner2011-07-041-4/+1
* | Issue #12392: fix thread initialization on FreeBSD 6Victor Stinner2011-06-241-1/+4
* | Issue #9670: Increase the default stack size for secondary threads onNed Deily2011-05-281-0/+12
|\|
| * Issue #9670: Increase the default stack size for secondary threads onNed Deily2011-05-281-0/+12
| |\
| | * Issue #9670: Increase the default stack size for secondary threads onNed Deily2011-05-281-0/+12
* | | Issue #1856: Avoid crashes and lockups when daemon threads run while theAntoine Pitrou2011-05-041-2/+2
|\| |