diff options
Diffstat (limited to 'mrbgems/mruby-time/src')
| -rw-r--r-- | mrbgems/mruby-time/src/time.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mrbgems/mruby-time/src/time.c b/mrbgems/mruby-time/src/time.c index 5093a73ce..50d618fc3 100644 --- a/mrbgems/mruby-time/src/time.c +++ b/mrbgems/mruby-time/src/time.c @@ -21,6 +21,7 @@ #endif #include <stdlib.h> +#include <unistd.h> #define NDIV(x,y) (-(-((x)+1)/(y))-1) #define TO_S_FMT "%Y-%m-%d %H:%M:%S " @@ -382,6 +383,13 @@ current_mrb_time(mrb_state *mrb) sec = ts.tv_sec; usec = ts.tv_nsec / 1000; } +#elif (defined(_POSIX_TIMERS) && _POSIX_TIMERS > 0) && defined(_POSIX_MONOTONIC_CLOCK) + { + struct timespec ts; + clock_gettime(CLOCK_MONOTONIC, &ts); + sec = ts.tv_sec; + usec = ts.tv_nsec / 1000; + } #elif defined(NO_GETTIMEOFDAY) { static time_t last_sec = 0, last_usec = 0; |
