summaryrefslogtreecommitdiffstats
path: root/Python/pystate.c
Commit message (Expand)AuthorAgeFilesLines
* gh-124878: Fix race conditions during interpreter finalization (#130649)Sam Gross2025-03-061-39/+57
* GH-127705: better double free message. (GH-130785)Mark Shannon2025-03-051-3/+16
* gh-130091: Reorder `_PyThreadState_Attach` to avoid data race (gh-130092)Sam Gross2025-02-271-2/+1
* gh-130421: Fix data race on timebase initialization (gh-130592)Sam Gross2025-02-271-0/+6
* GH-130396: Use computed stack limits on linux (GH-130398)Mark Shannon2025-02-251-4/+7
* GH-91079: Revert "GH-91079: Implement C stack limits using addresses, not cou...Petr Viktorin2025-02-241-7/+4
* gh-111924: Fix data races when swapping allocators (gh-130287)Sam Gross2025-02-201-1/+1
* GH-91079: Implement C stack limits using addresses, not counters. (GH-130007)Mark Shannon2025-02-191-4/+7
* gh-128002: use per threads tasks linked list in asyncio (#128869)Kumar Aditya2025-02-061-1/+11
* GH-126599: Remove the PyOptimizer API (GH-129194)Brandt Bucher2025-01-291-9/+1
* GH-91048: Add utils for capturing async call stack for asyncio programs and e...Yury Selivanov2025-01-221-0/+2
* gh-129033: Remove _PyInterpreterState_SetConfig() function (#129048)Victor Stinner2025-01-201-14/+0
* gh-128360: Add `_Py_AssertHoldsTstate` as assertion for holding a thread stat...Peter Bierma2025-01-201-1/+0
* GH-127705: Add debug mode for `_PyStackRef`s inspired by HPy debug mode (GH-1...Mark Shannon2024-12-201-0/+29
* gh-115999: Enable specialization of `CALL` instructions in free-threaded buil...mpage2024-12-031-0/+2
* gh-109746: Make _thread.start_new_thread delete state of new thread on its st...Radislav Chugunov2024-11-221-1/+3
* gh-114940: Add _Py_FOR_EACH_TSTATE_UNLOCKED(), and Friends (gh-127077)Eric Snow2024-11-211-52/+46
* gh-121058: Warn if `PyThreadState_Clear` is called with an exception set (gh-...Peter Bierma2024-11-201-0/+5
* gh-126914: Store the Preallocated Thread State's Pointer in a PyInterpreterSt...Eric Snow2024-11-191-47/+46
* gh-126986: Drop _PyInterpreterState_FailIfNotRunning() (gh-126988)Eric Snow2024-11-191-12/+8
* gh-76785: Minor Cleanup of "Cross-interpreter" Code (gh-126457)Eric Snow2024-11-071-1/+1
* gh-115999: Implement thread-local bytecode and enable specialization for `BIN...mpage2024-11-041-0/+10
* gh-125286: Share the Main Refchain With Legacy Interpreters (gh-125709)Eric Snow2024-10-231-4/+2
* gh-125604: Move _Py_AuditHookEntry, etc. Out of pycore_runtime.h (gh-125605)Eric Snow2024-10-181-1/+1
* gh-124218: Use per-thread refcounts for code objects (#125216)Sam Gross2024-10-151-1/+1
* gh-111924: use atomics for interp id refcounting (#125321)Kumar Aditya2024-10-121-48/+6
* gh-116750: Add clear_tool_id function to unregister events and callbacks (#12...Tian Gao2024-10-011-0/+1
* gh-124218: Refactor per-thread reference counting (#124844)Sam Gross2024-10-011-3/+3
* GH-123516: Improve JIT memory consumption by invalidating cold executors (GH-...Savannah Ostrowski2024-09-271-0/+1
* gh-119333: Add C api to have contextvar enter/exit callbacks (#119335)Jason Fried2024-09-241-0/+5
* Remove comment from pystate created in 2003 (#123259)Anthony Shaw2024-08-241-5/+0
* Add debug offsets for free threaded builds (#123041)Pablo Galindo Salgado2024-08-151-1/+3
* gh-122697: Fix free-threading memory leaks at shutdown (#122703)Sam Gross2024-08-081-1/+1
* gh-122417: Implement per-thread heap type refcounts (#122418)Sam Gross2024-08-061-7/+6
* gh-100240: Use a consistent implementation for freelists (#121934)Sam Gross2024-07-221-2/+2
* gh-120973: Fix thread-safety issues with `threading.local` (#121655)mpage2024-07-191-0/+3
* gh-121621: Move asyncio_running_loop to private struct (#121939)Sam Gross2024-07-171-2/+2
* gh-121621: Move asyncio running loop to thread state (GH-121695)Ken Jin2024-07-161-0/+4
* gh-120838: Add _PyThreadState_WHENCE_FINI (gh-121010)Eric Snow2024-06-251-5/+9
* gh-120726: Fix compiler warnings on is_core_module() (#120727)Kirill Podoprigora2024-06-191-3/+4
* gh-117657: Fix race involving GC and heap initialization (#119923)Sam Gross2024-06-041-0/+2
* gh-117657: Fix race involving immortalizing objects (#119927)Sam Gross2024-06-031-3/+1
* gh-119369: Fix deadlock during thread exit in free-threaded build (#119528)Sam Gross2024-05-311-9/+12
* gh-119585: Fix crash involving `PyGILState_Release()` and `PyThreadState_Clea...Sam Gross2024-05-311-0/+6
* gh-118727: Don't drop the GIL in `drop_gil()` unless the current thread holds...Brett Simmers2024-05-231-7/+4
* gh-117657: Fix QSBR race condition (#118843)Alex Turner2024-05-101-1/+1
* gh-117657: Fix data races reported by TSAN on `interp->threads.main` (#118865)mpage2024-05-101-11/+20
* gh-116322: Enable the GIL while loading C extension modules (#118560)Brett Simmers2024-05-071-8/+25
* gh-112075: use per-thread dict version pool (#118676)Dino Viehland2024-05-071-0/+1
* gh-118527: Intern code consts in free-threaded build (#118667)Sam Gross2024-05-071-0/+1