COMMITS
/ Python/thread_nt.h October 2, 2024
J
gh-87135: Hang non-main threads that attempt to acquire the GIL during finalization (GH-105805)
Jeremy Maitin-Shepard committed
May 4, 2024
V
gh-110850: Use _PyDeadline_Get() in EnterNonRecursiveMutex() (#118556)
Victor Stinner committed
February 28, 2024
S
gh-116012: Preserve GetLastError() across calls to TlsGetValue on Windows (GH-116014)
Steve Dower committed
February 21, 2024
V
gh-110850: Cleanup PyTime API: PyTime_t are nanoseconds (#115753)
Victor Stinner committed
February 20, 2024
V
gh-110850: Rename internal PyTime C API functions (#115734)
Victor Stinner committed
V
gh-110850: Cleanup pycore_time.h includes (#115724)
Victor Stinner committed
V
gh-110850: Replace _PyTime_t with PyTime_t (#115719)
Victor Stinner committed
February 6, 2024
S
gh-115035: Mark ThreadHandles as non-joinable earlier after forking (#115042)
Sam Gross committed
February 2, 2024
A
gh-104530: Enable native Win32 condition variables by default (GH-104531)
Andrew Rogers committed
November 4, 2023
A
GH-110829: Ensure Thread.join() joins the OS thread (#110848)
Antoine Pitrou committed
December 9, 2022
E
gh-81057: Move Threading-Related Globals to _PyRuntimeState (#100084)
Eric Snow committed
May 10, 2022
V
gh-88750: On Windows, PyThread_acquire_lock() no longer checks for NULL (#92586)
Victor Stinner committed
May 9, 2022
G
gh-88750: Remove the PYTHONTHREADDEBUG env var support. (#92509)
Gregory P. Smith committed
December 7, 2021
E
bpo-46008: Move thread-related interpreter state into a sub-struct. (gh-29971)
Eric Snow committed
October 1, 2021
V
bpo-41710: Add private _PyDeadline_Get() function (GH-28674)
Victor Stinner committed
V
bpo-41710: Fix PY_TIMEOUT_MAX on Windows (GH-28673)
Victor Stinner committed
September 30, 2021
V
bpo-41710: PyThread_acquire_lock_timed() clamps the timout (GH-28643)
Victor Stinner committed
September 24, 2021
V
bpo-41299: Mark private thread_nt.h functions as static (GH-28553)
Victor Stinner committed
V
bpo-41299: Fix EnterNonRecursiveMutex() (GH-28548)
Victor Stinner committed
June 7, 2021
April 14, 2020
V
bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509)
Victor Stinner committed
V
bpo-40268: Include explicitly pycore_interp.h (GH-19505)
Victor Stinner committed
March 11, 2020
B
bpo-39847: EnterNonRecursiveMutex() uses GetTickCount64() (GH-18780)
bobince committed
May 22, 2019
J
bpo-36084: Add native thread ID (TID) to threading.Thread (GH-13463)
Jake Tesler committed
May 21, 2019
V
Revert "bpo-36084: Add native thread ID to threading.Thread objects (GH-11993)" (GH-13458)
Victor Stinner committed
May 12, 2019
J
bpo-36084: Add native thread ID to threading.Thread objects (GH-11993)
Jake Tesler committed
May 4, 2019
V
bpo-36475: Make PyThread_exit_thread with _Py_NO_RETURN (GH-13068)
Victor Stinner committed
February 2, 2019
N
bpo-33316: PyThread_release_lock always fails (GH-6541)
native-api committed
November 1, 2018
V
bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)
Victor Stinner committed
January 17, 2018
H
Fix typo in thread_nt.h code comment (GH-5211)
hui shang committed
November 8, 2017
V
Replace KB unit with KiB (#4293)
Victor Stinner committed
October 24, 2017
V
bpo-30768: Recompute timeout on interrupted lock (GH-4103)
Victor Stinner committed
October 6, 2017
M
bpo-25658: Implement PEP 539 for Thread Specific Storage (TSS) API (GH-1362)
Masayuki Yamamoto committed
September 8, 2017
E
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow committed
September 6, 2017
E
Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)
Eric Snow committed
E
bpo-30860: Consolidate stateful runtime globals. (#2594)
Eric Snow committed
July 3, 2017
M
bpo-30832: Remove own implementation for thread-local storage (#2537)
Masayuki Yamamoto committed
March 23, 2017
S
bpo-6532: Make the thread id an unsigned integer. (#781)
Serhiy Storchaka committed
September 6, 2016
B
replace PY_LONG_LONG with long long
Benjamin Peterson committed
September 5, 2016
L
Issue #27355: Removed support for Windows CE. It was never finished,
Larry Hastings committed
April 17, 2016
S
Issue #26778: Fixed "a/an/and" typos in code comment and documentation.
Serhiy Storchaka committed
May 8, 2014
K
The PyCOND_TIMEDWAIT must use microseconds for the timeout argument
Kristján Valur Jónsson committed
December 13, 2013
V
Issue #19787: PyThread_set_key_value() now always set the value
Victor Stinner committed
V
Backout changeset 46393019b650
Victor Stinner committed
V
Close #19787: PyThread_set_key_value() now always set the value. In Python 3.3,
Victor Stinner committed
July 7, 2013
V
Issue #18203: Replace malloc() with PyMem_RawMalloc() to allocate thread locks
Victor Stinner committed
January 25, 2013
M
Replace WaitForSingleObject with WaitForSingleObjectEx,
Martin v. Löwis committed
June 18, 2012
K
Issue #15038: Optimize python Locks on Windows
Kristján Valur Jónsson committed
March 30, 2011
A
Issue #11618: Fix the timeout logic in threading.Lock.acquire() under
Antoine Pitrou committed
December 15, 2010
A
Issue #8844: Regular and recursive lock acquisitions can now be interrupted
Antoine Pitrou committed