| Index: fusl/src/thread/pthread_rwlock_trywrlock.c
|
| diff --git a/fusl/src/thread/pthread_rwlock_trywrlock.c b/fusl/src/thread/pthread_rwlock_trywrlock.c
|
| index bb3d3a992d1f3dd8a4919de9945b7fad75786a6a..b68e10c3910c93eacf81e818e131adf80bfacac0 100644
|
| --- a/fusl/src/thread/pthread_rwlock_trywrlock.c
|
| +++ b/fusl/src/thread/pthread_rwlock_trywrlock.c
|
| @@ -1,7 +1,7 @@
|
| #include "pthread_impl.h"
|
|
|
| -int pthread_rwlock_trywrlock(pthread_rwlock_t *rw)
|
| -{
|
| - if (a_cas(&rw->_rw_lock, 0, 0x7fffffff)) return EBUSY;
|
| - return 0;
|
| +int pthread_rwlock_trywrlock(pthread_rwlock_t* rw) {
|
| + if (a_cas(&rw->_rw_lock, 0, 0x7fffffff))
|
| + return EBUSY;
|
| + return 0;
|
| }
|
|
|