-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix data race in loadAlignmentPatternLoc #104
Conversation
it looks good, and add a test case for it would be better. And further, is there a more performance way to resolve it? such as a precalculated state? reducing locked code block? |
@yeqown
Using a precalculated state could indeed be a more performance-efficient way to resolve this. |
@mnrtks If "pre-calculated state" is not planned by you or this PR, this PR will be accepted and merged. |
@yeqown "pre-calculated state" is not planned in this PR. |
* Fix data race in loadAlignmentPatternLoc * Add test for loadAlignmentPatternLoc with concurrent access * go test with -race flag
* Fix data race in loadAlignmentPatternLoc * Add test for loadAlignmentPatternLoc with concurrent access * go test with -race flag
* Fix data race in loadAlignmentPatternLoc * Add test for loadAlignmentPatternLoc with concurrent access * go test with -race flag
fixed #103