X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcommon.h;h=401a5e8af7cece371f3bd29cfce27ec0f211a0c9;hb=85d422935f1a6ebdb689f4108185521b022a51d9;hp=cc12ef8c354c746863bec0b9f641dbbe38a080b5;hpb=3174431d74be819f6da1068eb4484a3a0d32bd7c;p=satune.git diff --git a/src/common.h b/src/common.h index cc12ef8..401a5e8 100644 --- a/src/common.h +++ b/src/common.h @@ -18,13 +18,14 @@ #include "config.h" #include "time.h" +#define NANOSEC 1000000000.0 -#if 1 +#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)