diff options
Diffstat (limited to 'sysdeps/generic/bits/rwlock.h')
-rw-r--r-- | sysdeps/generic/bits/rwlock.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/generic/bits/rwlock.h b/sysdeps/generic/bits/rwlock.h index af6b1c8..bc27726 100644 --- a/sysdeps/generic/bits/rwlock.h +++ b/sysdeps/generic/bits/rwlock.h @@ -31,9 +31,9 @@ struct __pthread_rwlock { __pthread_spinlock_t __held; __pthread_spinlock_t __lock; - int readers; - struct __pthread *readerqueue; - struct __pthread *writerqueue; + int __readers; + struct __pthread *__readerqueue; + struct __pthread *__writerqueue; struct __pthread_rwlockattr *__attr; void *__data; }; |