-
Notifications
You must be signed in to change notification settings - Fork 67
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
Data race in interrupt.c #72
Comments
The SCIP library, unfortunately, still registers a signal handler that looks for SIGINT by default. You probably want to disable this by setting parameter |
I do think this is the issue. |
Yes, the interrupt counting makes little sense in a multithreaded setting. You can have SCIP in one thread catching SIGINT and incrementing Therefore, the current workaround is to set That several threads read the same |
I fixed it using stdatomic.h
|
SanitizerError
ThreadSanitizer: data race [scip/src/scip/interrupt.c:167]
SCIP 8.0.4
The text was updated successfully, but these errors were encountered: