summaryrefslogtreecommitdiff
path: root/netfs.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2013-02-11 23:15:15 +0000
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-02-11 23:15:15 +0000
commitc9fc3cbc0449b0b67a5e491fe8c492442c120843 (patch)
tree04c3cb4e194f3e507fcd0fefd455f04c518cdc0c /netfs.c
parent647c57259146571b78107e5e8bcfc9b6c81bc031 (diff)
Fix build against libpthreadgopherfs/master
* Makefile (HURDLIBS): Add -lshouldbeinlibc * gopherfs.h: Include <pthread.h> instead of <cthreads.h>, use pthread functions instead of cthreads functions.
Diffstat (limited to 'netfs.c')
-rw-r--r--netfs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/netfs.c b/netfs.c
index bcd6e093b..b1c9dc19a 100644
--- a/netfs.c
+++ b/netfs.c
@@ -45,7 +45,7 @@ netfs_attempt_create_file (struct iouser *user, struct node *dir,
char *name, mode_t mode, struct node **node)
{
*node = NULL;
- mutex_unlock (&dir->lock);
+ pthread_mutex_unlock (&dir->lock);
return EROFS;
}
@@ -299,7 +299,7 @@ netfs_attempt_lookup (struct iouser *user, struct node *dir,
;
if (nd)
- mutex_lock (&nd->lock);
+ pthread_mutex_lock (&nd->lock);
else
err = ENOENT;
@@ -310,7 +310,7 @@ netfs_attempt_lookup (struct iouser *user, struct node *dir,
if (!err)
netfs_nref (*node);
- mutex_unlock (&dir->lock);
+ pthread_mutex_unlock (&dir->lock);
return err;
}
@@ -469,7 +469,7 @@ netfs_attempt_mkfile (struct iouser *user, struct node *dir,
mode_t mode, struct node ** node)
{
*node = NULL;
- mutex_unlock (&dir->lock);
+ pthread_mutex_unlock (&dir->lock);
return EROFS;
}