From 18ac1129d1a88a3441a7f955c782c77adb78ab0f Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 23 Apr 2001 20:03:56 +0000 Subject: [PATCH] Update. * internals.h: Fix parameter type for __pthread_clock_gettime and __pthread_clock_settime. --- linuxthreads/ChangeLog | 2 ++ linuxthreads/internals.h | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index 553219f..af46318 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 f9bb36f..aeb45aa 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 */ -- 2.7.4