diff options
| -rw-r--r-- | libpthread/linuxthreads.old/condvar.c | 10 | ||||
| -rw-r--r-- | libpthread/linuxthreads.old/sysdeps/pthread/pthread.h | 8 | 
2 files changed, 8 insertions, 10 deletions
| diff --git a/libpthread/linuxthreads.old/condvar.c b/libpthread/linuxthreads.old/condvar.c index 23e71393c..35daacf15 100644 --- a/libpthread/linuxthreads.old/condvar.c +++ b/libpthread/linuxthreads.old/condvar.c @@ -25,16 +25,6 @@  #include "queue.h"  #include "restart.h" -libpthread_hidden_proto(pthread_cond_broadcast) -libpthread_hidden_proto(pthread_cond_destroy) -libpthread_hidden_proto(pthread_cond_init) -libpthread_hidden_proto(pthread_cond_signal) -libpthread_hidden_proto(pthread_cond_wait) -libpthread_hidden_proto(pthread_cond_timedwait) - -libpthread_hidden_proto(pthread_condattr_destroy) -libpthread_hidden_proto(pthread_condattr_init) -  int pthread_cond_init(pthread_cond_t *cond,                        const pthread_condattr_t *cond_attr attribute_unused)  { diff --git a/libpthread/linuxthreads.old/sysdeps/pthread/pthread.h b/libpthread/linuxthreads.old/sysdeps/pthread/pthread.h index 38d566731..3bf586eca 100644 --- a/libpthread/linuxthreads.old/sysdeps/pthread/pthread.h +++ b/libpthread/linuxthreads.old/sysdeps/pthread/pthread.h @@ -394,20 +394,25 @@ extern int pthread_mutexattr_gettype (__const pthread_mutexattr_t *__restrict  extern int pthread_cond_init (pthread_cond_t *__restrict __cond,  			      __const pthread_condattr_t *__restrict  			      __cond_attr) __THROW; +libpthread_hidden_proto(pthread_cond_init)  /* Destroy condition variable COND.  */  extern int pthread_cond_destroy (pthread_cond_t *__cond) __THROW; +libpthread_hidden_proto(pthread_cond_destroy)  /* Wake up one thread waiting for condition variable COND.  */  extern int pthread_cond_signal (pthread_cond_t *__cond) __THROW; +libpthread_hidden_proto(pthread_cond_signal)  /* Wake up all threads waiting for condition variables COND.  */  extern int pthread_cond_broadcast (pthread_cond_t *__cond) __THROW; +libpthread_hidden_proto(pthread_cond_broadcast)  /* Wait for condition variable COND to be signaled or broadcast.     MUTEX is assumed to be locked before.  */  extern int pthread_cond_wait (pthread_cond_t *__restrict __cond,  			      pthread_mutex_t *__restrict __mutex); +libpthread_hidden_proto(pthread_cond_wait)  /* Wait for condition variable COND to be signaled or broadcast until     ABSTIME.  MUTEX is assumed to be locked before.  ABSTIME is an @@ -417,14 +422,17 @@ extern int pthread_cond_timedwait (pthread_cond_t *__restrict __cond,  				   pthread_mutex_t *__restrict __mutex,  				   __const struct timespec *__restrict  				   __abstime); +libpthread_hidden_proto(pthread_cond_timedwait)  /* Functions for handling condition variable attributes.  */  /* Initialize condition variable attribute ATTR.  */  extern int pthread_condattr_init (pthread_condattr_t *__attr) __THROW; +libpthread_hidden_proto(pthread_condattr_init)  /* Destroy condition variable attribute ATTR.  */  extern int pthread_condattr_destroy (pthread_condattr_t *__attr) __THROW; +libpthread_hidden_proto(pthread_condattr_destroy)  /* Get the process-shared flag of the condition variable attribute ATTR.  */  extern int pthread_condattr_getpshared (__const pthread_condattr_t * | 
