From: Ulrich Drepper Date: Sat, 24 Jul 2004 20:18:57 +0000 (+0000) Subject: [BZ #284] X-Git-Tag: cvs/fedora-base~287 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=15ef4b555f5bef9bbcb39bf72f8399d77e57afff;p=thirdparty%2Fglibc.git [BZ #284] Update. 2004-07-23 Jakub Jelinek [BZ #284] * sysdeps/pthread/pthread.h (pthread_getcpuclockid): Use __clockid_t instead of clockid_t. --- diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index 2fa486a5029..f2507ae9d96 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,9 @@ +2004-07-23 Jakub Jelinek + + [BZ #284] + * sysdeps/pthread/pthread.h (pthread_getcpuclockid): Use __clockid_t + instead of clockid_t. + 2004-07-21 Roland McGrath * Makefile ($(objpfx)multidir.mk): Use $(make-target-directory). diff --git a/linuxthreads/sysdeps/pthread/pthread.h b/linuxthreads/sysdeps/pthread/pthread.h index 95a10cb3664..c4a5f2caacc 100644 --- a/linuxthreads/sysdeps/pthread/pthread.h +++ b/linuxthreads/sysdeps/pthread/pthread.h @@ -648,7 +648,7 @@ extern void _pthread_cleanup_pop_restore (struct _pthread_cleanup_buffer *__buff #ifdef __USE_XOPEN2K /* Get ID of CPU-time clock for thread THREAD_ID. */ extern int pthread_getcpuclockid (pthread_t __thread_id, - clockid_t *__clock_id) __THROW; + __clockid_t *__clock_id) __THROW; #endif diff --git a/nptl/ChangeLog b/nptl/ChangeLog index b24fde12a7b..85a063f0118 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,9 @@ +2004-07-23 Jakub Jelinek + + [BZ #284] + * sysdeps/pthread/pthread.h (pthread_getcpuclockid): Use __clockid_t + instead of clockid_t. + 2004-07-21 Roland McGrath * Makefile ($(objpfx)multidir.mk): Use $(make-target-directory). diff --git a/nptl/sysdeps/pthread/pthread.h b/nptl/sysdeps/pthread/pthread.h index 8fb6cc741df..f5e9167a6b3 100644 --- a/nptl/sysdeps/pthread/pthread.h +++ b/nptl/sysdeps/pthread/pthread.h @@ -915,7 +915,7 @@ extern int pthread_setspecific (pthread_key_t __key, #ifdef __USE_XOPEN2K /* Get ID of CPU-time clock for thread THREAD_ID. */ extern int pthread_getcpuclockid (pthread_t __thread_id, - clockid_t *__clock_id) __THROW; + __clockid_t *__clock_id) __THROW; #endif