index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
ceval_gil.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
[3.13] gh-118727: Don't drop the GIL in `drop_gil()` unless the current threa...
Miss Islington (bot)
2024-05-23
1
-39/+57
*
gh-116322: Enable the GIL while loading C extension modules (#118560)
Brett Simmers
2024-05-07
1
-13/+145
*
gh-118534: Fix load of `gil->locked` (#118553)
Sam Gross
2024-05-03
1
-1/+1
*
GH-118095: Make sure that progress is made if there are pending calls being h...
Mark Shannon
2024-05-01
1
-11/+10
*
gh-116749: Disable GIL by default in free-threaded build (#118295)
Sam Gross
2024-04-26
1
-3/+1
*
gh-110693: Pending Calls Machinery Cleanups (gh-118296)
Eric Snow
2024-04-26
1
-55/+104
*
gh-117929: Restore removed PyEval_InitThreads() function (#117931)
Victor Stinner
2024-04-17
1
-2/+1
*
gh-116522: Refactor `_PyThreadState_DeleteExcept` (#117131)
Sam Gross
2024-03-21
1
-5/+2
*
gh-116908: Only write to `_pending_calls.calls_to_do` with atomic operations ...
Brett Simmers
2024-03-20
1
-2/+2
*
gh-116167: Allow disabling the GIL with `PYTHON_GIL=0` or `-X gil=0` (#116338)
Brett Simmers
2024-03-11
1
-0/+15
*
gh-116590: Fix unused `current_thread_holds_gil` function warning (#116591)
Nikita Sobolev
2024-03-11
1
-0/+2
*
gh-112175: Add `eval_breaker` to `PyThreadState` (#115194)
Brett Simmers
2024-02-20
1
-93/+150
*
gh-110481: Implement inter-thread queue for biased reference counting (#114824)
Sam Gross
2024-02-09
1
-0/+8
*
gh-104530: Enable native Win32 condition variables by default (GH-104531)
Andrew Rogers
2024-02-02
1
-0/+8
*
gh-111964: Implement stop-the-world pauses (gh-112471)
Sam Gross
2024-01-23
1
-0/+9
*
gh-112723: Call `PyThreadState_Clear()` from the correct interpreter (#112776)
Sam Gross
2023-12-13
1
-3/+1
*
gh-112978: Remove redundant condition inside `take_gil` (gh-112979)
Yan Yanchii
2023-12-11
1
-5/+0
*
gh-111924: Use PyMutex for Runtime-global Locks. (gh-112207)
Sam Gross
2023-12-07
1
-28/+9
*
gh-109693: Remove pycore_atomic.h (gh-110992)
Donghee Na
2023-10-17
1
-1/+0
*
gh-109693: Update _gil_runtime_state.locked to use pyatomic.h (gh-110836)
Donghee Na
2023-10-16
1
-16/+11
*
gh-109693: Update _gil_runtime_state.last_holder to use pyatomic.h (#110605)
Donghee Na
2023-10-13
1
-7/+7
*
gh-109693: Use pyatomic.h for signal module (gh-110480)
Donghee Na
2023-10-09
1
-1/+1
*
gh-76785: Add SendChannel.send_buffer() (#110246)
Eric Snow
2023-10-09
1
-12/+19
*
gh-109549: Add new states to PyThreadState to support PEP 703 (gh-109915)
Sam Gross
2023-10-05
1
-36/+11
*
GH-109369: Merge all eval-breaker flags and monitoring version into one word....
Mark Shannon
2023-10-04
1
-179/+72
*
gh-76785: Use Pending Calls When Releasing Cross-Interpreter Data (gh-109556)
Eric Snow
2023-09-19
1
-4/+4
*
gh-108987: Fix _thread.start_new_thread() race condition (#109135)
Victor Stinner
2023-09-11
1
-25/+3
*
gh-104690: thread_run() checks for tstate dangling pointer (#109056)
Victor Stinner
2023-09-08
1
-18/+8
*
gh-108753: Enhance pystats (#108754)
Victor Stinner
2023-09-06
1
-2/+3
*
GH-104584: Fix ENTER_EXECUTOR (GH-106141)
Mark Shannon
2023-07-03
1
-2/+59
*
gh-106320: Remove _PyInterpreterState_Get() alias (#106321)
Victor Stinner
2023-07-01
1
-2/+2
*
gh-104812: Run Pending Calls in any Thread (gh-104813)
Eric Snow
2023-06-13
1
-82/+131
*
gh-104341: Call _PyEval_ReleaseLock() with NULL When Finalizing the Current T...
Eric Snow
2023-06-01
1
-4/+26
*
gh-105182: Remove PyEval_AcquireLock() and PyEval_InitThreads() (#105183)
Victor Stinner
2023-06-01
1
-4/+9
*
gh-104341: Adjust tstate_must_exit() to Respect Interpreter Finalization (gh-...
Eric Snow
2023-05-15
1
-0/+3
*
gh-99113: A Per-Interpreter GIL! (gh-104210)
Eric Snow
2023-05-08
1
-42/+13
*
gh-99113: Make Sure the GIL is Acquired at the Right Places (gh-104208)
Eric Snow
2023-05-06
1
-27/+57
*
gh-104233: Fix "unused variable" warning in `ceval_gil.c` (#104234)
Nikita Sobolev
2023-05-06
1
-0/+2
*
gh-99113: Add PyInterpreterConfig.own_gil (gh-104204)
Eric Snow
2023-05-05
1
-1/+22
*
gh-99113: Share the GIL via PyInterpreterState.ceval.gil (gh-104203)
Eric Snow
2023-05-05
1
-38/+59
*
gh-103323: Remove PyRuntimeState_GetThreadState() (#104171)
Victor Stinner
2023-05-04
1
-3/+2
*
gh-103167: Fix `-Wstrict-prototypes` warnings by using `(void)` for functions...
Nikita Sobolev
2023-04-05
1
-1/+1
*
gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...
Irit Katriel
2023-02-28
1
-4/+3
*
gh-59956: Clarify Runtime State Status Expectations (gh-101308)
Eric Snow
2023-01-30
1
-1/+1
*
gh-59956: Clarify GILState-related Code (gh-101161)
Eric Snow
2023-01-19
1
-8/+6
*
gh-81057: Move More Globals in Core Code to _PyRuntimeState (gh-99516)
Eric Snow
2022-11-16
1
-5/+4
*
gh-97922: Run the GC only on eval breaker (#97920)
Pablo Galindo Salgado
2022-10-08
1
-10/+20
*
gh-96387: take_gil() resets drop request before exit (#96869)
Victor Stinner
2022-09-19
1
-0/+11
*
GH-96177: Move GIL and eval breaker code out of ceval.c into ceval_gil.c. (GH...
Mark Shannon
2022-08-24
1
-0/+986