[issue6132] Implement the GIL with critical sections in Windows

2013-08-15 Thread Antoine Pitrou
Antoine Pitrou added the comment: I'm closing this as out-of-date (due to the new GIL in 3.2 and upwards). -- resolution: -> out of date status: open -> closed ___ Python tracker ___

[issue6132] Implement the GIL with critical sections in Windows

2012-07-30 Thread Atsuo Ishimoto
Changes by Atsuo Ishimoto : -- nosy: +ishimoto ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue6132] Implement the GIL with critical sections in Windows

2009-11-13 Thread Antoine Pitrou
Antoine Pitrou added the comment: Phillip, the GIL implementation has changed completely in the current py3k (3.2) branch. If you have any specific benchmark to test it, it would be nice to give it a try. In any case, using a critical section in thread_nt.h could still be beneficial for things

[issue6132] Implement the GIL with critical sections in Windows

2009-11-11 Thread David Fraser
Changes by David Fraser : -- nosy: +davidfraser ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue6132] Implement the GIL with critical sections in Windows

2009-06-01 Thread Mark Hammond
Changes by Mark Hammond : -- nosy: +mhammond ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue6132] Implement the GIL with critical sections in Windows

2009-05-29 Thread Phillip Sitbon
Phillip Sitbon added the comment: Tabified new code and removed one C++-style comment. -- Added file: http://bugs.python.org/file14114/thread_nt.h.patch ___ Python tracker ___ __

[issue6132] Implement the GIL with critical sections in Windows

2009-05-29 Thread Phillip Sitbon
Changes by Phillip Sitbon : Removed file: http://bugs.python.org/file14096/thread_nt.h.patch ___ Python tracker ___ ___ Python-bugs-list mailin

[issue6132] Implement the GIL with critical sections in Windows

2009-05-28 Thread Phillip Sitbon
Phillip Sitbon added the comment: > I'm not competent to review Windows-specific stuff, but > some style notes: > - your indentation is inconsistent with the original file > (you should use tabs) > - please don't use any C++-style comments Thanks- I was only supplying the code for testing purp

[issue6132] Implement the GIL with critical sections in Windows

2009-05-28 Thread Kevin Watters
Changes by Kevin Watters : -- nosy: +kevinwatters ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue6132] Implement the GIL with critical sections in Windows

2009-05-28 Thread Martin v . Löwis
Martin v. Löwis added the comment: > Obviously we can't just slap on a critical section and call it done, > unless nobody cares about changing what threading.Lock does. This isn't obvious to me. I do care about what threading.Lock does, but still fail to see why we can't just slap on a criticia

[issue6132] Implement the GIL with critical sections in Windows

2009-05-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: I'm not competent to review Windows-specific stuff, but some style notes: - your indentation is inconsistent with the original file (you should use tabs) - please don't use any C++-style comments -- nosy: +pitrou ___

[issue6132] Implement the GIL with critical sections in Windows

2009-05-27 Thread Collin Winter
Changes by Collin Winter : -- nosy: +collinwinter ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue6132] Implement the GIL with critical sections in Windows

2009-05-27 Thread Phillip Sitbon
Changes by Phillip Sitbon : Added file: http://bugs.python.org/file14097/LockingTest.py ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue6132] Implement the GIL with critical sections in Windows

2009-05-27 Thread Phillip Sitbon
New submission from Phillip Sitbon : At the suggestion of others on the Python-Dev list, I'm going to outline what I've been doing with the GIL and where I see possiblity for improvement. Discussion: http://mail.python.org/pipermail/python-dev/2009-May/089746.html Detail: Currently, Python's