diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-04-23 20:03:56 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-04-23 20:03:56 +0000 |
commit | 18ac1129d1a88a3441a7f955c782c77adb78ab0f (patch) | |
tree | 014f056dd7fdf9101d8e073aec0aa106f2190e0f /linuxthreads | |
parent | 3b5c1b57d3a2de7955eed21f01cb80e663473491 (diff) | |
download | glibc-18ac1129d1a88a3441a7f955c782c77adb78ab0f.tar.gz glibc-18ac1129d1a88a3441a7f955c782c77adb78ab0f.tar.xz glibc-18ac1129d1a88a3441a7f955c782c77adb78ab0f.zip |
Update.
* internals.h: Fix parameter type for __pthread_clock_gettime and __pthread_clock_settime.
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/ChangeLog | 2 | ||||
-rw-r--r-- | linuxthreads/internals.h | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index 553219fa98..af4631859c 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -8,6 +8,8 @@ * manager.c: Likewise. * ptclock_gettime.c: New file. * ptclock_settime.c: New file. + * internals.h: Fix parameter type for __pthread_clock_gettime and + __pthread_clock_settime. * sysdeps/i386/i586/ptclock_gettime.c: Removed. * sysdeps/i386/i586/ptclock_settime.c: Removed. diff --git a/linuxthreads/internals.h b/linuxthreads/internals.h index f9bb36fd46..aeb45aae01 100644 --- a/linuxthreads/internals.h +++ b/linuxthreads/internals.h @@ -510,8 +510,8 @@ extern int __pthread_spin_unlock (pthread_spinlock_t *__lock); extern int __pthread_spin_init (pthread_spinlock_t *__lock, int __pshared); extern int __pthread_spin_destroy (pthread_spinlock_t *__lock); -extern int __pthread_clock_gettime (unsigned long long int freq, struct timespec *tp); -extern void __pthread_clock_settime (unsigned long long int offset); +extern int __pthread_clock_gettime (hp_timing_t freq, struct timespec *tp); +extern void __pthread_clock_settime (hp_timing_t offset); /* Global pointers to old or new suspend functions */ |