From 05df18c3475157cda8126a07b5bb0f52082a0b67 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 2 Jan 2003 11:01:30 +0000 Subject: Update. 2003-01-02 Ulrich Drepper * sysdeps/pthread/bits/pthreadtypes.h (pthread_cond_t): Add padding. * condvar.c: Add symbol versioning. The compatibility versions are the same as the change in the interface does not effect this implementation. * Versions [libpthread]: Add definitions for new pthread_cond_* interfaces for version GLIBC_2.3.2. --- nptl/pthreadP.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'nptl/pthreadP.h') diff --git a/nptl/pthreadP.h b/nptl/pthreadP.h index eb5c6d4106..e4a90131d9 100644 --- a/nptl/pthreadP.h +++ b/nptl/pthreadP.h @@ -315,6 +315,17 @@ extern int __pthread_enable_asynccancel (void) attribute_hidden; extern void __pthread_disable_asynccancel (int oldtype) internal_function attribute_hidden; +extern int __old_pthread_cond_broadcast (pthread_cond_t *cond); +extern int __old_pthread_cond_destroy (pthread_cond_t *cond); +extern int __old_pthread_cond_init (pthread_cond_t *cond, + const pthread_condattr_t *cond_attr); +extern int __old_pthread_cond_signal (pthread_cond_t *cond); +extern int __old_pthread_cond_timedwait (pthread_cond_t *cond, + pthread_mutex_t *mutex, + const struct timespec *abstime); +extern int __old_pthread_cond_wait (pthread_cond_t *cond, + pthread_mutex_t *mutex); + /* The two functions are in libc.so and not exported. */ extern int __libc_enable_asynccancel (void) attribute_hidden; extern void __libc_disable_asynccancel (int oldtype) -- cgit v1.2.3