libcm is a C development framework with an emphasis on audio signal processing applications.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

clock_gettime_stub.h 199B

1234567891011121314
  1. #ifdef OS_OSX
  2. typedef enum {
  3. CLOCK_REALTIME,
  4. CLOCK_MONOTONIC,
  5. CLOCK_PROCESS_CPUTIME_ID,
  6. CLOCK_THREAD_CPUTIME_ID
  7. } clockid_t;
  8. int clock_gettime(clockid_t clk_id, struct timespec *tp);
  9. #endif