Setting timeout for SMT test
[satune.git] / src / common.h
index c94d6bdf4a5b8a9d51241f64253c50acaf55c591..401a5e8af7cece371f3bd29cfce27ec0f211a0c9 100644 (file)
 #include "config.h"
 #include "time.h"
 
+#define NANOSEC 1000000000.0
 
-#ifdef SATCHECK_CONFIG
+#if 0
 extern int model_out;
 extern int model_err;
 extern int switch_alloc;
 
-#define model_dprintf(fd, fmt, ...) do { switch_alloc = 1; dprintf(fd, fmt, ## __VA_ARGS__); switch_alloc = 0; } while (0)
+#define model_dprintf(fd, fmt, ...) do { int oldsw = switch_alloc; switch_alloc = 1; dprintf(fd, fmt, ## __VA_ARGS__); switch_alloc = oldsw; } while (0)
 
 #define model_print(fmt, ...) do { model_dprintf(model_out, fmt, ## __VA_ARGS__); } while (0)
 #define model_print_err(fmt, ...) do { model_dprintf(model_err, fmt, ## __VA_ARGS__); } while (0)