Don't use clockid_t in mythread.h when clock_gettime() isn't available.

Thanks to Wim Lewis for the patch.
This commit is contained in:
Lasse Collin 2011-05-17 12:52:18 +03:00
parent f779516f42
commit f004128678
1 changed files with 2 additions and 0 deletions

View File

@ -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;