How to disable the SIGINT signal handler? #7600
Unanswered
mikulas-patocka
asked this question in
Q&A
Replies: 1 comment
-
So, I was analyzing z3 with a debugger, it turns out that the SIGINT handler is enabled in the function I'd like to ask if it would be possible to add an option to disable the SIGINT handler, so that the z3 library could be used in a program that handles SIGINT on its own and wouldn't interfere with it. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi
I use libz3 as a part of my program and I'd like to disable the ctrl-c SIGINT signal handling in z3. I found out that there is "ctrl_c" argument on this page "https://microsoft.github.io/z3guide/docs/strategies/summary", however it is unclear where should the argument be written - "(set-option :ctrl_c false)" doesn't work, "z3 -pd" doesn't list the ctrl_c argument, "z3 ctrl_c=false" also doesn't work.
Mikulas
Beta Was this translation helpful? Give feedback.
All reactions