Fix clock_gettime() on OSX (v2)

pull/1480/head
Gabriele Gristina 6 years ago
parent 43ce4f6135
commit 03fab4a345

@ -6,13 +6,6 @@
#ifndef _TIMER_H
#define _TIMER_H
#if defined(__APPLE__) && defined(MISSING_CLOCK_GETTIME)
#include <sys/time.h>
#include <mach/clock.h>
#include <mach/mach.h>
#include <mach/mach_time.h>
#endif
void hc_timer_set (hc_timer_t *a);
double hc_timer_get (hc_timer_t a);

@ -47,6 +47,8 @@ typedef uint64_t u64;
#if defined (_WIN)
typedef LARGE_INTEGER hc_timer_t;
#elif defined(__APPLE__) && defined(MISSING_CLOCK_GETTIME)
typedef struct timeval hc_timer_t;
#else
typedef struct timespec hc_timer_t;
#endif

@ -34,21 +34,7 @@ inline double hc_timer_get (hc_timer_t a)
inline void hc_timer_set (hc_timer_t* a)
{
#if defined(__APPLE__) && defined(MISSING_CLOCK_GETTIME)
// taken from proxmark3/client/util_posix
static uint64_t clock_start_time = 0;
static mach_timebase_info_data_t timebase_info = {0, 0};
uint64_t now = mach_absolute_time();
if (clock_start_time == 0)
{
mach_timebase_info(&timebase_info);
clock_start_time = now;
}
now = (uint64_t)((double)(now - clock_start_time) * (double)timebase_info.numer / (double)timebase_info.denom);
a->tv_sec = now / 1000000000;
a->tv_nsec = now % 1000000000;
gettimeofday (a, NULL);
#else
clock_gettime (CLOCK_MONOTONIC, a);
#endif
@ -60,6 +46,9 @@ inline double hc_timer_get (hc_timer_t a)
hc_timer_set (&hr_tmp);
#if defined(__APPLE__) && defined(MISSING_CLOCK_GETTIME)
return (double) (((hr_tmp.tv_sec - (a).tv_sec) * 1000) + ((double) (hr_tmp.tv_usec - (a).tv_usec) / 1000));
#else
hc_timer_t s;
s.tv_sec = hr_tmp.tv_sec - a.tv_sec;
@ -74,6 +63,7 @@ inline double hc_timer_get (hc_timer_t a)
double r = ((double) s.tv_sec * 1000) + ((double) s.tv_nsec / 1000000);
return r;
#endif
}
#endif

Loading…
Cancel
Save