make style
This commit is contained in:
parent
181cd914d5
commit
d8a93217ff
1 changed files with 5 additions and 5 deletions
|
@ -50,11 +50,11 @@
|
|||
#ifndef _WIN32
|
||||
# include <time.h>
|
||||
# define msleep(x) do { \
|
||||
struct timespec xsleep; \
|
||||
xsleep.tv_sec = x / 1000; \
|
||||
xsleep.tv_nsec = (x - xsleep.tv_sec * 1000) * 1000 * 1000; \
|
||||
nanosleep(&xsleep, NULL); \
|
||||
} while (0)
|
||||
struct timespec xsleep; \
|
||||
xsleep.tv_sec = x / 1000; \
|
||||
xsleep.tv_nsec = (x - xsleep.tv_sec * 1000) * 1000 * 1000; \
|
||||
nanosleep(&xsleep, NULL); \
|
||||
} while (0)
|
||||
#else
|
||||
# include <winbase.h>
|
||||
# define msleep Sleep
|
||||
|
|
Loading…
Reference in a new issue