diff options
| author | Austin Foxley <austinf@cetoncorp.com> | 2009-12-11 00:51:06 -0800 | 
|---|---|---|
| committer | Austin Foxley <austinf@cetoncorp.com> | 2009-12-11 00:51:06 -0800 | 
| commit | 5ea195692d4e18c3fe317bcc4428777d8adab3a3 (patch) | |
| tree | bb1c764a63ac6040ad0c1b5624a4678d8707359d /libpthread/nptl/sysdeps/pthread | |
| parent | 1a3ad45bb56f144b78139966b9a618675c871bb5 (diff) | |
nptl: fix even more old style declarations
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libpthread/nptl/sysdeps/pthread')
8 files changed, 14 insertions, 19 deletions
| diff --git a/libpthread/nptl/sysdeps/pthread/pthread_barrier_wait.c b/libpthread/nptl/sysdeps/pthread/pthread_barrier_wait.c index c6b563f24..d21ed79b1 100644 --- a/libpthread/nptl/sysdeps/pthread/pthread_barrier_wait.c +++ b/libpthread/nptl/sysdeps/pthread/pthread_barrier_wait.c @@ -25,8 +25,7 @@  /* Wait on barrier.  */  int -pthread_barrier_wait (barrier) -     pthread_barrier_t *barrier; +pthread_barrier_wait (pthread_barrier_t *barrier)  {    struct pthread_barrier *ibarrier = (struct pthread_barrier *) barrier;    int result = 0; diff --git a/libpthread/nptl/sysdeps/pthread/pthread_cond_broadcast.c b/libpthread/nptl/sysdeps/pthread/pthread_cond_broadcast.c index d83524182..f6e83ed3f 100644 --- a/libpthread/nptl/sysdeps/pthread/pthread_cond_broadcast.c +++ b/libpthread/nptl/sysdeps/pthread/pthread_cond_broadcast.c @@ -27,8 +27,7 @@  int -__pthread_cond_broadcast (cond) -     pthread_cond_t *cond; +__pthread_cond_broadcast (pthread_cond_t *cond)  {    /* Make sure we are alone.  */    lll_mutex_lock (cond->__data.__lock); diff --git a/libpthread/nptl/sysdeps/pthread/pthread_cond_signal.c b/libpthread/nptl/sysdeps/pthread/pthread_cond_signal.c index 863b0a029..5091bea87 100644 --- a/libpthread/nptl/sysdeps/pthread/pthread_cond_signal.c +++ b/libpthread/nptl/sysdeps/pthread/pthread_cond_signal.c @@ -27,8 +27,7 @@  int -__pthread_cond_signal (cond) -     pthread_cond_t *cond; +__pthread_cond_signal (pthread_cond_t *cond)  {    /* Make sure we are alone.  */    lll_mutex_lock (cond->__data.__lock); diff --git a/libpthread/nptl/sysdeps/pthread/pthread_once.c b/libpthread/nptl/sysdeps/pthread/pthread_once.c index 9b2cef864..fc16bc535 100644 --- a/libpthread/nptl/sysdeps/pthread/pthread_once.c +++ b/libpthread/nptl/sysdeps/pthread/pthread_once.c @@ -26,9 +26,9 @@ static lll_lock_t once_lock = LLL_LOCK_INITIALIZER;  int -__pthread_once (once_control, init_routine) -     pthread_once_t *once_control; -     void (*init_routine) (void); +__pthread_once ( +     pthread_once_t *once_control, +     void (*init_routine) (void))  {    /* XXX Depending on whether the LOCK_IN_ONCE_T is defined use a       global lock variable or one which is part of the pthread_once_t diff --git a/libpthread/nptl/sysdeps/pthread/pthread_rwlock_rdlock.c b/libpthread/nptl/sysdeps/pthread/pthread_rwlock_rdlock.c index e225d7030..2fdcc49f9 100644 --- a/libpthread/nptl/sysdeps/pthread/pthread_rwlock_rdlock.c +++ b/libpthread/nptl/sysdeps/pthread/pthread_rwlock_rdlock.c @@ -26,8 +26,7 @@  /* Acquire read lock for RWLOCK.  */  int -__pthread_rwlock_rdlock (rwlock) -     pthread_rwlock_t *rwlock; +__pthread_rwlock_rdlock (pthread_rwlock_t *rwlock)  {    int result = 0; diff --git a/libpthread/nptl/sysdeps/pthread/pthread_rwlock_timedrdlock.c b/libpthread/nptl/sysdeps/pthread/pthread_rwlock_timedrdlock.c index 80ea83a3d..8503788c2 100644 --- a/libpthread/nptl/sysdeps/pthread/pthread_rwlock_timedrdlock.c +++ b/libpthread/nptl/sysdeps/pthread/pthread_rwlock_timedrdlock.c @@ -26,9 +26,9 @@  /* Try to acquire read lock for RWLOCK or return after specfied time.  */  int -pthread_rwlock_timedrdlock (rwlock, abstime) -     pthread_rwlock_t *rwlock; -     const struct timespec *abstime; +pthread_rwlock_timedrdlock ( +     pthread_rwlock_t *rwlock, +     const struct timespec *abstime)  {    int result = 0; diff --git a/libpthread/nptl/sysdeps/pthread/pthread_rwlock_timedwrlock.c b/libpthread/nptl/sysdeps/pthread/pthread_rwlock_timedwrlock.c index 97c0598f9..d9caa85bb 100644 --- a/libpthread/nptl/sysdeps/pthread/pthread_rwlock_timedwrlock.c +++ b/libpthread/nptl/sysdeps/pthread/pthread_rwlock_timedwrlock.c @@ -26,9 +26,9 @@  /* Try to acquire write lock for RWLOCK or return after specfied time.	*/  int -pthread_rwlock_timedwrlock (rwlock, abstime) -     pthread_rwlock_t *rwlock; -     const struct timespec *abstime; +pthread_rwlock_timedwrlock ( +     pthread_rwlock_t *rwlock, +     const struct timespec *abstime)  {    int result = 0; diff --git a/libpthread/nptl/sysdeps/pthread/pthread_rwlock_wrlock.c b/libpthread/nptl/sysdeps/pthread/pthread_rwlock_wrlock.c index 822aeed79..1b9186fb8 100644 --- a/libpthread/nptl/sysdeps/pthread/pthread_rwlock_wrlock.c +++ b/libpthread/nptl/sysdeps/pthread/pthread_rwlock_wrlock.c @@ -26,8 +26,7 @@  /* Acquire write lock for RWLOCK.  */  int -__pthread_rwlock_wrlock (rwlock) -     pthread_rwlock_t *rwlock; +__pthread_rwlock_wrlock (pthread_rwlock_t *rwlock)  {    int result = 0; | 
