diff options
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 */ |