Adding pring option for AST
[satune.git] / src / common.h
index 3fffb3419b88f3dc516c48ea915af6f7cb13167c..d52924c2d91e95904baae0e9fb7bb4d758778b96 100644 (file)
@@ -18,7 +18,7 @@
 #include "config.h"
 #include "time.h"
 
-/*
+
    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_print(fmt, ...) do { model_dprintf(model_out, fmt, ## __VA_ARGS__); } while (0)
-
+#define model_println(fmt, ...) do { model_print(fmt, ## __VA_ARGS__); model_print("\n");} while(0)
  #define model_print_err(fmt, ...) do { model_dprintf(model_err, fmt, ## __VA_ARGS__); } while (0)
 
- */
 
-#define model_print printf
+
+//#define model_print printf
 
 #define NEXTPOW2(x) ((x == 1) ? 1 : (1 << (sizeof(uint) * 8 - __builtin_clz(x - 1))))
 #define NUMBITS(x) ((x == 0) ? 0 : 8 * sizeof(x) - __builtin_clz(x))
@@ -69,7 +69,7 @@ void print_trace(void);
 
 static inline long long getTimeNano() {
        struct timespec time;
-       clock_gettime(CLOCK_REALTIME, & time);
+       clock_gettime(CLOCK_REALTIME, &time);
        return time.tv_sec * 1000000000 + time.tv_nsec;
 }
 #endif/* __COMMON_H__ */