From f004128678d43ea10b4a6401aa184cf83252d6ec Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Tue, 17 May 2011 12:52:18 +0300 Subject: [PATCH] Don't use clockid_t in mythread.h when clock_gettime() isn't available. Thanks to Wim Lewis for the patch. --- src/common/mythread.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/mythread.h b/src/common/mythread.h index 47af493..c538dea 100644 --- a/src/common/mythread.h +++ b/src/common/mythread.h @@ -86,9 +86,11 @@ typedef struct { /// Condition variable pthread_cond_t cond; +#ifdef HAVE_CLOCK_GETTIME /// Clock ID (CLOCK_REALTIME or CLOCK_MONOTONIC) associated with /// the condition variable clockid_t clk_id; +#endif } mythread_cond; -- 2.7.4