Acquire Lock Before Releasing Python GIL#386
Merged
christian-rauch merged 1 commit intoAprilRobotics:masterfrom Jun 11, 2025
Merged
Acquire Lock Before Releasing Python GIL#386christian-rauch merged 1 commit intoAprilRobotics:masterfrom
christian-rauch merged 1 commit intoAprilRobotics:masterfrom
Conversation
christian-rauch
approved these changes
Jun 1, 2025
Collaborator
christian-rauch
left a comment
There was a problem hiding this comment.
Thanks a lot for taking care of the issue.
Collaborator
|
Unfortunately, the signing key for the ROS apt repo expired yesterday and hasn't been updated in the |
Contributor
Author
|
I added a few changes:
Code was tested in the same manner as above. |
Collaborator
|
The CI seems to work again. Can you rebase and squash your commits together, and then force push again? |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 implements a lock in apriltag_pywrap.c to prevent multiple threads which share the same detector object from calling the detect function, apriltag_detector_detect(), at the same time.
Previously, the Python GIL was released during the call to apriltag_detector_detect(). This would cause the program to crash if multiple threads called this function at the same time. By implementing a lock, only a single thread can call it at a time.
The added functionality was tested using the following Python code: