mirror of
https://github.com/Z3Prover/z3
synced 2025-05-10 09:15:47 +00:00
Add an option "ctrl_c" that can be used to disable Ctrl-C signal handling (#7619)
Add this option, so that the z3 library can be used in programs that do signal handling on their own. Signed-off-by: Mikulas Patocka <mikulas@twibright.com>
This commit is contained in:
parent
ed5dd26bb7
commit
e31e9819b1
2 changed files with 4 additions and 0 deletions
|
@ -18,6 +18,7 @@ Revision History:
|
|||
--*/
|
||||
#include<signal.h>
|
||||
#include "util/scoped_ctrl_c.h"
|
||||
#include "util/gparams.h"
|
||||
|
||||
static scoped_ctrl_c * g_obj = nullptr;
|
||||
|
||||
|
@ -41,6 +42,8 @@ scoped_ctrl_c::scoped_ctrl_c(event_handler & eh, bool once, bool enabled):
|
|||
m_once(once),
|
||||
m_enabled(enabled),
|
||||
m_old_scoped_ctrl_c(g_obj) {
|
||||
if (gparams::get_value("ctrl_c") == "false")
|
||||
m_enabled = false;
|
||||
if (m_enabled) {
|
||||
g_obj = this;
|
||||
m_old_handler = signal(SIGINT, on_ctrl_c);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue