I am trying to use C code written on a Linux platform on Mac OS X. I am running into an error related to timers:
../src/stinger/timer.c:61:1: error: unknown type name 'clockid_t'
../src/stinger/timer.c:74:2: error: #error "Cannot find a clock!"
which points to this section of code.
static clockid_t clockid;
#if defined(CLOCK_REALTIME_ID)
#define CLKID CLOCK_REALTIME_ID
#define CLKIDNAME "CLOCK_REALTIME_ID"
#elif defined(CLOCK_THREAD_CPUTIME_ID)
#define CLKID CLOCK_THREAD_CPUTIME_ID
#define CLKIDNAME "CLOCK_THREAD_CPUTIME_ID"
#elif defined(CLOCK_REALTIME_ID)
#warning "Falling back to realtime clock."
#define CLKID CLOCK_REALTIME_ID
#define CLKIDNAME "CLOCK_REALTIME_ID"
#else
#error "Cannot find a clock!"
#endif
What is the cause of this error? Where should the type clockid_t come from?
time.h, but the feature test macro requirement is_POSIX_C_SOURCE >= 199309L. If you compile with e.g.-std=c99, that isn't set. – Daniel Fischer Nov 20 '12 at 12:11-std=c99. How can I solve this problem? – cls Nov 20 '12 at 12:15-D_POSIX_C_SOURCE=199309Lon the command line for example, or you can#defineit in the file before#include <time.h>. I'm not sure, maybe compiling with-gnu99would also set it. – Daniel Fischer Nov 20 '12 at 12:18