1c80d1b784
Reattach the licenses for the compat stuff to the source. Only build/link the compat stuff when it's needed. Rename compat/util.h so it's not confused with util.h. Move all the platform specific defines inside compat/compat.h.
24 lines
420 B
C
24 lines
420 B
C
#ifndef CLOCK_GETTIME_H
|
|
#define CLOCK_GETTIME_H
|
|
|
|
#include <mach/mach_time.h>
|
|
|
|
#ifndef CLOCKID_T
|
|
#define CLOCKID_T
|
|
typedef enum
|
|
{
|
|
CLOCK_REALTIME,
|
|
CLOCK_MONOTONIC,
|
|
CLOCK_PROCESS_CPUTIME_ID,
|
|
CLOCK_THREAD_CPUTIME_ID
|
|
} clockid_t;
|
|
#endif // CLOCKID_T
|
|
|
|
struct timespec;
|
|
|
|
static mach_timebase_info_data_t __clock_gettime_inf;
|
|
|
|
int clock_gettime(clockid_t clk_id, struct timespec *tp);
|
|
|
|
#endif // CLOCK_GETTIME_H
|