diff options
-rw-r--r-- | linuxthreads/ChangeLog | 5 | ||||
-rw-r--r-- | linuxthreads/internals.h | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index e74f0bf..40056ba 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,8 @@ +2001-04-21 Andreas Jaeger <aj@suse.de> + + * internals.h: Add __pthread_clock_gettime and + __pthread_clock_settime prototypes. + 2001-04-21 Ulrich Drepper <drepper@redhat.com> * internals.h: Include <cpuclock-init.h>. diff --git a/linuxthreads/internals.h b/linuxthreads/internals.h index fbe0ea3..27d4789 100644 --- a/linuxthreads/internals.h +++ b/linuxthreads/internals.h @@ -510,6 +510,9 @@ 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); + /* Global pointers to old or new suspend functions */ |