You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The GIL is required and I want to avoid a possible race condition from the check above.
The scenario is a custom __del__ method on a heap allocated class which would be called when the object is disposed and the GIL assertion would cause a hard crash. It's possible we're just not testing that right now (or aren't testing the race)
The GIL is required and I want to avoid a possible race condition from the check above.
The scenario is a custom __del__ method on a heap allocated class which would be called when the object is disposed and the GIL assertion would cause a hard crash. It's possible we're just not testing that right now (or aren't testing the race)
If it's this tricky, then I think we should add a comment, but I am still having a tough time seeing the race condition. The GIL class is designed with TLS in mind for avoiding nested acquisitions for the same thread. If GIL.IsAcquired returned ture, it means that the calling thread already has the GIL. If there's a thread-switch between the GIL.IsAcquired check and GIL.Acquire then it wouldn't matter because other threads would see their own state of GIL acquisition. When the interrupted thread resumes, the result of its GIL.IsAcquired won't have changed. Am I missing something?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR removes a redundant GIL acquisition during the release of a
PyObject.