summaryrefslogtreecommitdiff
path: root/Python/ceval_gil.h
Commit message (Expand)AuthorAgeFilesLines
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-071-85/+74
* Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)Eric Snow2017-09-051-74/+85
* bpo-30860: Consolidate stateful runtime globals. (#2594)Eric Snow2017-09-051-85/+74
* replace Py_(u)intptr_t with the c99 standard typesBenjamin Peterson2016-09-061-2/+2
* Use Py_uintptr_t for atomic pointersVictor Stinner2016-01-221-4/+4
* Removed unintentional trailing spaces in non-external and non-generated C files.Serhiy Storchaka2015-03-181-6/+6
* Fixed few compiler warnings.Serhiy Storchaka2015-02-161-2/+2
* Issue #15038: Optimize python Locks on WindowsKristján Valur Jónsson2012-06-181-191/+27
* Signal condition variables with the mutex held. Destroy condition variablesKristján Valur Jónsson2012-06-051-4/+5
* Fix the GIL with subinterpreters. Hopefully this will allow mod_wsgi to work ...Antoine Pitrou2011-01-151-4/+7
* Issue #9828: Destroy the GIL in Py_Finalize(), so that it gets properlyAntoine Pitrou2010-09-131-0/+21
* Issue #8411: new condition variable emulation under Windows for the new GIL,Antoine Pitrou2010-08-101-52/+105
* Make (most of) Python's tests pass under Thread Sanitizer.Jeffrey Yasskin2010-05-031-20/+28
* Try to strengthen condition-waiting under Windows.Antoine Pitrou2009-11-121-11/+9
* Our condition variable emulation under Windows is imperfect, whichAntoine Pitrou2009-11-111-9/+24
* Merge in the new GIL.Antoine Pitrou2009-11-101-0/+335