mirror of
https://github.com/Z3Prover/z3
synced 2025-08-08 12:11:23 +00:00
mux
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
2788f72bbb
commit
9262908ebb
30 changed files with 191 additions and 341 deletions
|
@ -23,6 +23,10 @@ Revision History:
|
|||
#include <thread>
|
||||
#include "util/util.h"
|
||||
|
||||
static std::mutex g_verbose_mux;
|
||||
void verbose_lock() { g_verbose_mux.lock(); }
|
||||
void verbose_unlock() { g_verbose_mux.unlock(); }
|
||||
|
||||
static unsigned g_verbosity_level = 0;
|
||||
|
||||
void set_verbosity_level(unsigned lvl) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue