summaryrefslogtreecommitdiff
path: root/mach.c
blob: a9095f6b9cc0f97ddc698e07a4606b37822ba61c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifdef __MACH__
#include "mach.h"

/* there is no clock_gettime on MacOS platform */
int clock_gettime(int clk_id, struct timespec *t)
{
    mach_timebase_info_data_t timebase;
    mach_timebase_info(&timebase);
    
    uint64_t time;
    
    time = mach_absolute_time();
    
    double nseconds = ((double)time * (double)timebase.numer) / ((double)timebase.denom);
    double seconds = ((double)time * (double)timebase.numer) / ((double)timebase.denom * 1e9);
    
    t->tv_sec = seconds;
    t->tv_nsec = nseconds;
    
    return 0;
}
#endif