summaryrefslogtreecommitdiff
path: root/src/main/signal_handlers.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/signal_handlers.h')
-rw-r--r--src/main/signal_handlers.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/main/signal_handlers.h b/src/main/signal_handlers.h
new file mode 100644
index 000000000..cc1917418
--- /dev/null
+++ b/src/main/signal_handlers.h
@@ -0,0 +1,46 @@
+/********************* */
+/*! \file signal_handlers.h
+ ** \verbatim
+ ** Top contributors (to current version):
+ ** Gereon Kremer
+ ** This file is part of the CVC4 project.
+ ** Copyright (c) 2009-2020 by the authors listed in the file AUTHORS
+ ** in the top-level source directory) and their institutional affiliations.
+ ** All rights reserved. See the file COPYING in the top-level source
+ ** directory for licensing information.\endverbatim
+ **
+ ** \brief Implementation of signal handlers.
+ **
+ ** Implementation of signal handlers.
+ **/
+
+#ifndef CVC4__MAIN__SIGNAL_HANDLERS_H
+#define CVC4__MAIN__SIGNAL_HANDLERS_H
+
+namespace CVC4 {
+namespace main {
+namespace signal_handlers {
+
+/**
+ * Performs last steps before termination due to a timeout.
+ * Prints an appropriate message and solver statistics.
+ */
+void timeout_handler();
+
+/**
+ * Installs (almost) all signal handlers.
+ * A handler for SIGALRM is set in time_limit.cpp.
+ * Also sets callbacks via std::set_unexpected and std:set_terminate.
+ */
+void install();
+
+/**
+ * Performs cleanup related to the signal handlers.
+ */
+void cleanup();
+
+} // namespace signal_handlers
+} // namespace main
+} // namespace CVC4
+
+#endif /* CVC4__MAIN__SIGNAL_HANDLERS_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback