diff options
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/ChangeLog | 2 | ||||
-rw-r--r-- | nptl/sysdeps/pthread/pthread.h | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 00fc4e4a36..d376cf0fad 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,5 +1,7 @@ 2012-02-26 Ulrich Drepper <drepper@gmail.com> + * sysdeps/pthread/pthread.h: Define __need_clockid_t for __USE_XOPEN2K. + * sysdeps/pthread/pthread.h: Define __need_timespec before including <time.h>. * sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h: Name pthread_attr_t diff --git a/nptl/sysdeps/pthread/pthread.h b/nptl/sysdeps/pthread/pthread.h index df7445e358..0d33cbdb9e 100644 --- a/nptl/sysdeps/pthread/pthread.h +++ b/nptl/sysdeps/pthread/pthread.h @@ -21,6 +21,9 @@ #include <features.h> #include <endian.h> #include <sched.h> +#ifdef __USE_XOPEN2K +# define __need_clockid_t +#endif #define __need_timespec #include <time.h> |