diff options
Diffstat (limited to 'src/thread/pthread_rwlock_rdlock.c')
-rw-r--r-- | src/thread/pthread_rwlock_rdlock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread/pthread_rwlock_rdlock.c b/src/thread/pthread_rwlock_rdlock.c index 6bcdb815..29863507 100644 --- a/src/thread/pthread_rwlock_rdlock.c +++ b/src/thread/pthread_rwlock_rdlock.c @@ -3,6 +3,6 @@ int pthread_rwlock_rdlock(pthread_rwlock_t *rw) { while (pthread_rwlock_tryrdlock(rw)) - __wait(&rw->__wrlock, &rw->__waiters, 1, 0); + __wait(&rw->_rw_wrlock, &rw->_rw_waiters, 1, 0); return 0; } |