diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | include/pthread/pthread.h | 10 |
2 files changed, 15 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2005-05-31 Neal H. Walfield <neal@gnu.org> + + * include/pthread/pthread.h: If clockid_t is still not defined + after including <time.h>, define it manually. + 2005-05-17 Neal H. Walfield <neal@gnu.org> * include/pthread/pthread.h: Define __need_clockid_t before diff --git a/include/pthread/pthread.h b/include/pthread/pthread.h index 23a5ff4..891ed32 100644 --- a/include/pthread/pthread.h +++ b/include/pthread/pthread.h @@ -29,6 +29,16 @@ #define __need_clockid_t #include <time.h> +/* If we are in a mode where clockid_t is not automatically defined + and another header has already included <time.h> then defining + __need_clockid_t was not enough. */ +#ifndef __clockid_t_defined +# define __clockid_t_defined 1 +# include <bits/types.h> +/* Clock ID used in clock and timer functions. */ +typedef __clockid_t clockid_t; +#endif + __BEGIN_DECLS #include <bits/pthread.h> |