summaryrefslogtreecommitdiff
path: root/src/util/safe_print.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/safe_print.cpp')
-rw-r--r--src/util/safe_print.cpp39
1 files changed, 20 insertions, 19 deletions
diff --git a/src/util/safe_print.cpp b/src/util/safe_print.cpp
index ce4f529a4..221809fec 100644
--- a/src/util/safe_print.cpp
+++ b/src/util/safe_print.cpp
@@ -1,22 +1,23 @@
-/********************* */
-/*! \file safe_print.cpp
- ** \verbatim
- ** Top contributors (to current version):
- ** Andres Noetzli
- ** This file is part of the CVC4 project.
- ** Copyright (c) 2009-2021 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 Definition of print functions that are safe to use in a signal
- ** handler.
- **
- ** Signal handlers only allow a very limited set of operations, e.g. dynamic
- ** memory allocation is not possible. This set of functions can be used to
- ** print information from a signal handler. All output is written to file
- ** descriptors using the async-signal-safe write() function.
- **/
+/******************************************************************************
+ * Top contributors (to current version):
+ * Andres Noetzli
+ *
+ * This file is part of the cvc5 project.
+ *
+ * Copyright (c) 2009-2021 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.
+ * ****************************************************************************
+ *
+ * Definition of print functions that are safe to use in a signal
+ * handler.
+ *
+ * Signal handlers only allow a very limited set of operations, e.g. dynamic
+ * memory allocation is not possible. This set of functions can be used to
+ * print information from a signal handler. All output is written to file
+ * descriptors using the async-signal-safe write() function.
+ */
#include "safe_print.h"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback