mirror of
https://github.com/lz4/lz4.git
synced 2024-11-28 04:14:23 +08:00
commit
158c5840e4
@ -94,9 +94,12 @@
|
||||
static int g_displayLevel = 0; /* 0 : no display ; 1: errors ; 2 : + result + interaction + warnings ; 3 : + progression; 4 : + information */
|
||||
|
||||
#define DISPLAYUPDATE(l, ...) if (g_displayLevel>=l) { \
|
||||
if (((clock_t)(g_time - clock()) > refreshRate) || (g_displayLevel>=4)) \
|
||||
{ g_time = clock(); DISPLAY(__VA_ARGS__); \
|
||||
if (g_displayLevel>=4) fflush(stderr); } }
|
||||
if ( ((clock() - g_time) > refreshRate) \
|
||||
|| (g_displayLevel>=4) ) { \
|
||||
g_time = clock(); \
|
||||
DISPLAY(__VA_ARGS__); \
|
||||
if (g_displayLevel>=4) fflush(stderr); \
|
||||
} }
|
||||
static const clock_t refreshRate = CLOCKS_PER_SEC / 6;
|
||||
static clock_t g_time = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user