X-Git-Url: http://git.archive.openwrt.org/?p=project%2Flibubox.git;a=blobdiff_plain;f=utils.c;h=078a8a191af27a7ccd862578b1306658d059cb76;hp=4589da856935cf44d7950468fc07811dd6098ee2;hb=13b5c1d4ca488575ee3dd4726b669f768fad8ffa;hpb=d03a6a27c7fcdca70db417c15cdccc0185b1efef diff --git a/utils.c b/utils.c index 4589da8..078a8a1 100644 --- a/utils.c +++ b/utils.c @@ -52,3 +52,43 @@ void *__calloc_a(size_t len, ...) return ret; } + +#ifdef __APPLE__ +#include + +static void clock_gettime_realtime(struct timespec *tv) +{ + struct timeval _tv; + + gettimeofday(&_tv, NULL); + tv->tv_sec = _tv.tv_sec; + tv->tv_nsec = _tv.tv_usec * 1000; +} + +static void clock_gettime_monotonic(struct timespec *tv) +{ + mach_timebase_info_data_t info; + float sec; + uint64_t val; + + mach_timebase_info(&info); + + val = mach_absolute_time(); + tv->tv_nsec = (val * info.numer / info.denom) % 1000000000; + + sec = val; + sec *= info.numer; + sec /= info.denom; + sec /= 1000000000; + tv->tv_sec = sec; +} + +void clock_gettime(int type, struct timespec *tv) +{ + if (type == CLOCK_REALTIME) + return clock_gettime_realtime(tv); + else + return clock_gettime_monotonic(tv); +} + +#endif