diff options
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/ChangeLog | 2 | ||||
-rw-r--r-- | nptl/pthreadP.h | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index aa422d3c46..3afa3e6754 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,5 +1,7 @@ 2003-01-07 Jakub Jelinek <jakub@redhat.com> + * pthreadP.h (__pthread_cond_timedwait): Add prototype. + * sysdeps/unix/sysv/linux/i386/dl-sysdep.h (RTLD_CORRECT_DYNAMIC_WEAK): Remove. (DL_SYSINFO_IMPLEMENTATION): Change into .text section and back. diff --git a/nptl/pthreadP.h b/nptl/pthreadP.h index b298524245..3223291dab 100644 --- a/nptl/pthreadP.h +++ b/nptl/pthreadP.h @@ -260,6 +260,9 @@ extern int __pthread_cond_init (pthread_cond_t *cond, const pthread_condattr_t *cond_attr); extern int __pthread_cond_signal (pthread_cond_t *cond); extern int __pthread_cond_wait (pthread_cond_t *cond, pthread_mutex_t *mutex); +extern int __pthread_cond_timedwait (pthread_cond_t *cond, + pthread_mutex_t *mutex, + const struct timespec *abstime); extern int __pthread_condattr_destroy (pthread_condattr_t *attr); extern int __pthread_condattr_init (pthread_condattr_t *attr); extern int __pthread_key_create (pthread_key_t *key, void (*destr) (void *)); |