diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-02-11 23:15:15 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-02-11 23:15:15 +0000 |
commit | c9fc3cbc0449b0b67a5e491fe8c492442c120843 (patch) | |
tree | 04c3cb4e194f3e507fcd0fefd455f04c518cdc0c /netfs.c | |
parent | 647c57259146571b78107e5e8bcfc9b6c81bc031 (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.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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; } |