mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-26 12:12:13 +03:00
Remove rwlock wrappers
The only remaining consumer of the rwlock compatibility wrappers
is ztest. Remove the wrappers and convert the few remaining
calls to the underlying pthread functions.
rwlock_init() -> pthread_rwlock_init()
rwlock_destroy() -> pthread_rwlock_destroy()
rw_rdlock() -> pthread_rwlock_rdlock()
rw_wrlock() -> pthread_rwlock_wrlock()
rw_unlock() -> pthread_rwlock_unlock()
Note pthread_rwlock_init() defaults to PTHREAD_PROCESS_PRIVATE
which is equivilant to the USYNC_THREAD behavior. There is no
functional change.
Reviewed-by: Olaf Faaland <faaland1@llnl.gov>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #7591
This commit is contained in:
@@ -15,7 +15,6 @@ libspl_HEADERS = \
|
||||
$(top_srcdir)/lib/libspl/include/stdlib.h \
|
||||
$(top_srcdir)/lib/libspl/include/string.h \
|
||||
$(top_srcdir)/lib/libspl/include/stropts.h \
|
||||
$(top_srcdir)/lib/libspl/include/synch.h \
|
||||
$(top_srcdir)/lib/libspl/include/thread.h \
|
||||
$(top_srcdir)/lib/libspl/include/tzfile.h \
|
||||
$(top_srcdir)/lib/libspl/include/ucred.h \
|
||||
|
||||
Reference in New Issue
Block a user