This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author sitbon
Recipients collinwinter, kevinwatters, loewis, pitrou, sitbon
Date 2009-05-28.23:26:42
SpamBayes Score 6.7798375e-08
Marked as misclassified No
Message-id <1243553207.54.0.591228777585.issue6132@psf.upfronthosting.co.za>
In-reply-to
Content
> 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 purposes, but I will
clean it up anyway... and read the style guide closer of course :)

> 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 criticial section
> and call it done.

If it were up to me, I'd say move forward with breaking the current
functionality. I guess my statement of "obviously" was that breaking it
outright would cause people to complain. After I got to thinking about
it that way, making GIL locking free from any other API seemed like it
would give more leeway for performance improvement.

If anyone is using the semaphore-like features of threading.Lock, they'd
likely be better off using threading.Semaphore anyway :) There are some
places where the core code would have to change in order to reflect the
differences, but otherwise it would be a significant improvement to the
GIL under high concurrency and not much of a change for a single thread.

On the positive side, a global change means that other core code using
locks will also see a speedup with critical sections as the default
thread lock. So I guess my main point is that somehow, whether separate
from or within the thread lock API, the GIL should be a critical section.
History
Date User Action Args
2009-05-28 23:26:47sitbonsetrecipients: + sitbon, loewis, collinwinter, pitrou, kevinwatters
2009-05-28 23:26:47sitbonsetmessageid: <1243553207.54.0.591228777585.issue6132@psf.upfronthosting.co.za>
2009-05-28 23:26:45sitbonlinkissue6132 messages
2009-05-28 23:26:43sitboncreate