From a0cde2b503b33ae47e0049cbd7cd6950ffa0ca08 Mon Sep 17 00:00:00 2001 From: dawg Date: Wed, 28 Dec 2011 18:43:18 +0100 Subject: [PATCH] fix pthread --- src/core/sys/posix/pthread.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/sys/posix/pthread.d b/src/core/sys/posix/pthread.d index 1f5f5821bf4..60de5bf9298 100644 --- a/src/core/sys/posix/pthread.d +++ b/src/core/sys/posix/pthread.d @@ -77,7 +77,7 @@ int pthread_mutexattr_destroy(pthread_mutexattr_t*); int pthread_mutexattr_init(pthread_mutexattr_t*); int pthread_once(pthread_once_t*, void function()); int pthread_rwlock_destroy(pthread_rwlock_t*); -int pthread_rwlock_init(in pthread_rwlock_t*, pthread_rwlockattr_t*); +int pthread_rwlock_init(pthread_rwlock_t*, in pthread_rwlockattr_t*); int pthread_rwlock_rdlock(pthread_rwlock_t*); int pthread_rwlock_tryrdlock(pthread_rwlock_t*); int pthread_rwlock_trywrlock(pthread_rwlock_t*); @@ -348,7 +348,7 @@ version( Posix ) int pthread_mutexattr_init(pthread_mutexattr_t*); int pthread_once(pthread_once_t*, void function()); int pthread_rwlock_destroy(pthread_rwlock_t*); - int pthread_rwlock_init(in pthread_rwlock_t*, pthread_rwlockattr_t*); + int pthread_rwlock_init(pthread_rwlock_t*, in pthread_rwlockattr_t*); int pthread_rwlock_rdlock(pthread_rwlock_t*); int pthread_rwlock_tryrdlock(pthread_rwlock_t*); int pthread_rwlock_trywrlock(pthread_rwlock_t*);