* src/TestOperations.cc (generateBuchiAutomaton): Forward SIGINT
and SIGQUIT. * src/ExternalTranslator.cc (ExternalTranslator::translate): Likewise. * src/main.cc (main): Do not intercept SIGINT in non-interactive runs.
This commit is contained in:
parent
ea90d2f8be
commit
48c03b89b8
7 changed files with 593 additions and 561 deletions
|
|
@ -704,7 +704,8 @@ int main(int argc, char* argv[])
|
|||
configuration.print(cout);
|
||||
|
||||
user_break = false;
|
||||
signal(SIGINT, breakHandler);
|
||||
if (configuration.global_options.interactive != Configuration::NEVER)
|
||||
signal(SIGINT, breakHandler);
|
||||
|
||||
#ifdef HAVE_OBSTACK_H
|
||||
obstack_alloc_failed_handler = &ObstackAllocator::failure;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue