summaryrefslogtreecommitdiffstats
path: root/Modules/_threadmodule.c
Commit message (Expand)AuthorAgeFilesLines
* gh-87135: Raise PythonFinalizationError when joining a blocked daemon thread ...Petr Viktorin2025-04-281-5/+15
* gh-112068: C API: Add support of nullable arguments in PyArg_Parse (GH-121303)Serhiy Storchaka2025-04-081-13/+5
* gh-115942: Add `locked` to several multiprocessing locks (#115944)sobolevn2025-04-081-0/+15
* gh-111178: Fix function signature for test_threading (#131663)Victor Stinner2025-03-241-2/+3
* gh-131238: Remove pycore_object_deferred.h from pycore_object.h (#131549)Victor Stinner2025-03-211-1/+2
* gh-131268: Implement thread names on OpenBSD (#131528)Xavier G.2025-03-211-5/+22
* GH-131238: More refactoring of core header files (GH-131351)Mark Shannon2025-03-171-0/+1
* gh-111178: Fix function signatures to fix undefined behavior (#131191)Victor Stinner2025-03-141-3/+3
* gh-111178: Fix function signatures in misc files (#131180)Victor Stinner2025-03-131-2/+3
* gh-124878: Fix race conditions during interpreter finalization (#130649)Sam Gross2025-03-061-3/+0
* gh-130163: Fix crashes related to PySys_GetObject() (GH-130503)Serhiy Storchaka2025-02-251-6/+6
* gh-111178: fix UBSan failures in `Modules/_threadmodule.c` (GH-129794)Bénédikt Tran2025-02-241-76/+83
* gh-129354: Use PyErr_FormatUnraisable() function (#129518)Victor Stinner2025-01-311-16/+27
* gh-59705: Make PYTHREAD_NAME_MAXLEN macro private (#128945)Victor Stinner2025-01-181-10/+10
* gh-59705: Implement _thread.set_name() on Windows (#128675)Victor Stinner2025-01-171-2/+81
* gh-128691: Use deferred reference counting on `_thread._local` (#128693)Sam Gross2025-01-101-0/+4
* gh-128279: Enhance the NetBSD compatibility for thread naming (#128280)Furkan Onder2024-12-281-0/+3
* gh-59705: Set OS thread name when Thread.name is changed (#127702)Victor Stinner2024-12-101-2/+1
* gh-59705: Add _thread.set_name() function (#127338)Victor Stinner2024-12-061-0/+108
* gh-127190: Fix local_setattro() error handling (#127366)Victor Stinner2024-11-281-1/+1
* gh-109746: Make _thread.start_new_thread delete state of new thread on its st...Radislav Chugunov2024-11-221-0/+1
* gh-125139: use `_PyRecursiveMutex` in `_thread.RLock` (#125144)Kumar Aditya2024-10-141-118/+33
* gh-117721: use PyMutex in `_thread.lock` (#125110)Kumar Aditya2024-10-081-45/+11
* gh-111178: Fix function signatures in _threadmodule.c (#124964)Victor Stinner2024-10-041-49/+70
* Fix typos (#123775)algonell2024-09-091-2/+2
* gh-120973: Fix thread-safety issues with `threading.local` (#121655)mpage2024-07-191-150/+234
* gh-116322: Add Py_mod_gil module slot (#116882)Brett Simmers2024-05-031-0/+1
* gh-118332: Fix deadlock involving stop the world (#118412)Sam Gross2024-04-301-1/+2
* gh-117764: Add signatures and improve docstrings in the _thread module (GH-11...Serhiy Storchaka2024-04-121-46/+126
* gh-113964: Don't prevent new threads until all non-daemon threads exit (#116677)Sam Gross2024-03-191-1/+1
* gh-116915: Make `_thread._ThreadHandle` support GC (#116934)mpage2024-03-181-3/+13
* gh-114271: Fix race in `Thread.join()` (#114839)mpage2024-03-161-305/+674
* gh-116437: Use new C API PyDict_Pop() to simplify the code (GH-116438)Serhiy Storchaka2024-03-071-6/+2
* gh-114271: Make `_thread.lock` thread-safe in free-threaded builds (#116433)mpage2024-03-061-2/+2
* gh-114271: Make `_thread.ThreadHandle` thread-safe in free-threaded builds (G...mpage2024-03-011-40/+127
* gh-110850: Replace private _PyTime_MAX with public PyTime_MAX (#115751)Victor Stinner2024-02-211-1/+1
* gh-110850: Use public PyTime functions (#115746)Victor Stinner2024-02-201-1/+1
* gh-110850: Cleanup pycore_time.h includes (#115724)Victor Stinner2024-02-201-0/+1
* gh-110850: Replace _PyTime_t with PyTime_t (#115719)Victor Stinner2024-02-201-6/+6
* gh-114271: Make `thread._rlock` thread-safe in free-threaded builds (#115102)mpage2024-02-161-10/+22
* gh-114570: Add PythonFinalizationError exception (#115352)Victor Stinner2024-02-141-1/+1
* gh-114271: Make `PyInterpreterState.threads.count` thread-safe in free-thread...mpage2024-02-121-3/+3
* gh-115035: Mark ThreadHandles as non-joinable earlier after forking (#115042)Sam Gross2024-02-061-17/+36
* gh-114315: Make `threading.Lock` a real class, not a factory function (#114479)Nikita Sobolev2024-01-251-4/+29
* gh-114414: Assert PyType_GetModuleByDef result in _threadmodule (#114415)Nikita Sobolev2024-01-221-0/+3
* gh-111789: Use PyDict_GetItemRef() in Modules/_threadmodule.c (gh-112077)Serhiy Storchaka2023-11-271-6/+4
* gh-111262: Add PyDict_Pop() function (#112028)Victor Stinner2023-11-141-5/+2
* GH-110829: Ensure Thread.join() joins the OS thread (#110848)Antoine Pitrou2023-11-041-55/+282
* gh-108082: Remove _PyErr_WriteUnraisableMsg() (GH-111643)Serhiy Storchaka2023-11-031-2/+2
* gh-106320: Re-add some PyLong/PyDict C-API functions (GH-#111162)scoder2023-10-251-1/+0