summaryrefslogtreecommitdiff
path: root/libnetfs/file-get-fs-options.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2012-11-25 00:05:21 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2012-11-27 23:00:09 +0100
commit1d767442294df64b9746f02cd6fcf320da257b1f (patch)
tree545058ea2a191721820a41b5c8b6101bc1f65064 /libnetfs/file-get-fs-options.c
parent1de0643c9218db536f5b2e294bbfa653c77438e4 (diff)
Complete switch from cthreads to pthreads
* console/input.c: Switch comment from cthreads to pthreads. * libnetfs/file-get-fs-options.c: Likewise * libnetfs/fsys-get-options.c: Likewise * libnetfs/fsys-set-options.c: Likewise * libnetfs/shutdown.c: Likewise * libpager/lock-object.c: Likewise * nfsd/cache.c: Set back replycachelock as static variable. * term/hurdio.c: Use pthread_hurd_cond_wait_np instead of pthread_cond_wait.
Diffstat (limited to 'libnetfs/file-get-fs-options.c')
-rw-r--r--libnetfs/file-get-fs-options.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libnetfs/file-get-fs-options.c b/libnetfs/file-get-fs-options.c
index 1a18c72d..a8029916 100644
--- a/libnetfs/file-get-fs-options.c
+++ b/libnetfs/file-get-fs-options.c
@@ -44,11 +44,11 @@ netfs_S_file_get_fs_options (struct protid *user,
if (! err)
{
#if NOT_YET
- rwlock_reader_lock (&netfs_fsys_lock);
+ pthread_rwlock_rdlock (&netfs_fsys_lock);
#endif
err = netfs_append_args (&argz, &argz_len);
#if NOT_YET
- rwlock_reader_unlock (&netfs_fsys_lock);
+ pthread_rwlock_unlock (&netfs_fsys_lock);
#endif
}