Home | History | Annotate | Download | only in programs

Lines Matching refs:g_displayLevel

102 #define DISPLAYLEVEL(l, ...) if (g_displayLevel>=l) { DISPLAY(__VA_ARGS__); }
103 static int g_displayLevel = 0; /* 0 : no display ; 1: errors ; 2 : + result + interaction + warnings ; 3 : + progression; 4 : + information */
105 #define DISPLAYUPDATE(l, ...) if (g_displayLevel>=l) { \
106 if (((clock_t)(g_time - clock()) > refreshRate) || (g_displayLevel>=4)) \
108 if (g_displayLevel>=4) fflush(stderr); } }
204 g_displayLevel = level;
205 return g_displayLevel;
274 if (g_displayLevel <= 1) { /* No interaction possible */