summaryrefslogtreecommitdiffstats
path: root/Python/pystate.c
Commit message (Expand)AuthorAgeFilesLines
* gh-126016: Remove bad assertion in `PyThreadState_Clear` (GH-139158)Peter Bierma2025-09-191-1/+5
* gh-136003: Execute pre-finalization callbacks in a loop (GH-136004)Peter Bierma2025-09-181-1/+1
* gh-137838: Move _PyUOpInstruction buffer to PyInterpreterState (gh-138918)Donghee Na2025-09-171-0/+11
* gh-128627: Use __builtin_wasm_test_function_pointer_signature for Emscripten ...Hood Chatham2025-09-171-6/+0
* gh-137433: Fix deadlock with stop-the-world and daemon threads (gh-137735)Sam Gross2025-09-161-2/+4
* gh-137384: fix crash when accessing warnings state late in runtime shutdown (...Kumar Aditya2025-08-221-1/+4
* GH-137959: Replace shim code in jitted code with a single trampoline function...Mark Shannon2025-08-211-0/+5
* gh-137400: Fix thread-safety issues when profiling all threads (gh-137518)Sam Gross2025-08-131-11/+2
* gh-137514: Add a free-threading wrapper for mutexes (GH-137515)Peter Bierma2025-08-071-6/+2
* GH-136410: Faster side exits by using a cold exit stub (GH-136411)Mark Shannon2025-08-011-1/+8
* gh-136870: fix data race in `PyThreadState_Clear` on `sys_tracing_threads` (#...Kumar Aditya2025-07-211-0/+9
* gh-132775: Fix Interpreter.call() __main__ Visibility (gh-135595)Eric Snow2025-06-171-0/+1
* gh-91048: Refactor and optimize remote debugging module (#134652)Pablo Galindo Salgado2025-05-251-4/+6
* gh-131185: Use a proper thread-local for cached thread states (gh-132510)Peter Bierma2025-05-211-156/+43
* Simplify interp_look_up_id() (#134257)Victor Stinner2025-05-191-4/+2
* gh-134144: Fix use-after-free in zapthreads() (#134145)b-pass2025-05-181-2/+7
* GH-133231: Changes to executor management to support proposed `sys._jit` modu...Mark Shannon2025-05-041-1/+7
* GH-124715: Move trashcan mechanism into `Py_Dealloc` (GH-132280)Mark Shannon2025-04-301-1/+4
* GH-132508: Use tagged integers on the evaluation stack for the last instructi...Mark Shannon2025-04-291-1/+1
* gh-133079: Remove Py_C_RECURSION_LIMIT & PyThreadState.c_recursion_remaining ...Petr Viktorin2025-04-291-1/+0
* gh-132775: Drop PyUnstable_InterpreterState_GetMainModule() (gh-132978)Eric Snow2025-04-281-6/+32
* gh-132399: ensure correct alignment of `PyInterpreterState` (#132428)Bénédikt Tran2025-04-191-3/+14
* gh-131238: Add pycore_interpframe_structs.h header (#131553)Victor Stinner2025-03-211-2/+0
* gh-131238: Remove includes from pycore_interp.h (#131495)Victor Stinner2025-03-201-8/+7
* gh-131238: Remove more includes from pycore_interp.h (#131480)Victor Stinner2025-03-191-0/+1
* gh-131238: Remove many includes from pycore_interp.h (#131472)Victor Stinner2025-03-191-0/+1
* gh-131238: Convert pycore_pystate.h static inline to functions (#131352)Victor Stinner2025-03-171-0/+38
* GH-131238: Core header refactor (GH-131250)Mark Shannon2025-03-171-0/+3
* 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