summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2013-02-11 23:18:01 +0000
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-02-11 23:18:01 +0000
commit06ade0f4a6fc3f994fcf37615a96bd11e17dcc4c (patch)
tree04179cac0cf1a1cf57fcda54359c26e98f4391c3
parenta85ac8c0d182245d75eed1136503a57ac1c3a8fa (diff)
Fix build against libpthread
* Makefile.am (filter_LDADD): Use -lpthread instead of -lthreads. * filter.h: Include <pthread.h> instead of <cthreads.h> * filter.c: Use pthread functions instead of cthreads functions. * node.h: Likewise. * node.c: Likewise.
-rw-r--r--Makefile.am2
-rw-r--r--filter.c10
-rw-r--r--filter.h2
-rw-r--r--node.c8
-rw-r--r--node.h2
5 files changed, 12 insertions, 12 deletions
diff --git a/Makefile.am b/Makefile.am
index 672883152..e6fe095df 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -48,7 +48,7 @@ filter_LDADD = \
-lnetfs \
-lfshelp \
-liohelp \
- -lthreads \
+ -lpthread \
-lports \
-lihash \
-lshouldbeinlibc
diff --git a/filter.c b/filter.c
index ccf512556..8a9089545 100644
--- a/filter.c
+++ b/filter.c
@@ -84,7 +84,7 @@ error_t
LOG_MSG ("netfs_attempt_create_file");
/*Unlock `dir` and say that we can do nothing else here */
- mutex_unlock (&dir->lock);
+ pthread_mutex_unlock (&dir->lock);
return EOPNOTSUPP;
} /*netfs_attempt_create_file */
@@ -230,7 +230,7 @@ error_t
LOG_MSG ("netfs_attempt_lookup: '%s'", name);
/*Unlock the mutexes in `dir` */
- mutex_unlock (&dir->lock);
+ pthread_mutex_unlock (&dir->lock);
return EOPNOTSUPP;
} /*netfs_attempt_lookup */
@@ -418,7 +418,7 @@ error_t
LOG_MSG ("netfs_attempt_mkfile");
/*Unlock the directory */
- mutex_unlock (&dir->lock);
+ pthread_mutex_unlock (&dir->lock);
/*Operation not supported */
return EOPNOTSUPP;
@@ -504,7 +504,7 @@ kern_return_t
node_t *np = user->po->np;
/*Lock the node */
- mutex_lock (&np->lock);
+ pthread_mutex_lock (&np->lock);
/*Check if the user is the owner of this node */
err = fshelp_isowner (&np->nn_stat, user->user);
@@ -525,7 +525,7 @@ kern_return_t
*cntltype = MACH_MSG_TYPE_MOVE_SEND;
/*Unlock the node */
- mutex_unlock (&np->lock);
+ pthread_mutex_unlock (&np->lock);
/*Return the result of operations */
return err;
diff --git a/filter.h b/filter.h
index 6be032246..6e2ff5ac4 100644
--- a/filter.h
+++ b/filter.h
@@ -28,7 +28,7 @@
/*---------------------------------------------------------------------------*/
#include <stddef.h>
#include <stdlib.h>
-#include <cthreads.h>
+#include <pthread.h>
#include <unistd.h>
#include <sys/mman.h>
#include <sys/types.h>
diff --git a/node.c b/node.c
index 3c1e37518..4bd9f1640 100644
--- a/node.c
+++ b/node.c
@@ -41,7 +41,7 @@
/*---------------------------------------------------------------------------*/
/*--------Global Variables---------------------------------------------------*/
/*The lock protecting the underlying filesystem*/
-struct mutex ulfs_lock = MUTEX_INITIALIZER;
+pthread_mutex_t ulfs_lock = PTHREAD_MUTEX_INITIALIZER;
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
@@ -125,7 +125,7 @@ error_t node_init_root (mach_port_t underlying, /*the port to the
error_t err = 0;
/*Acquire a lock for operations on the underlying filesystem */
- mutex_lock (&ulfs_lock);
+ pthread_mutex_lock (&ulfs_lock);
/*Store the specified port in the node */
node->nn->port = underlying;
@@ -142,12 +142,12 @@ error_t node_init_root (mach_port_t underlying, /*the port to the
LOG_MSG ("node_init_root: Could not stat the root node.");
/*unlock the mutex and exit */
- mutex_unlock (&ulfs_lock);
+ pthread_mutex_unlock (&ulfs_lock);
return err;
}
/*Release the lock for operations on the undelying filesystem */
- mutex_unlock (&ulfs_lock);
+ pthread_mutex_unlock (&ulfs_lock);
/*Return the result of operations */
return err;
diff --git a/node.h b/node.h
index f8e1f3c99..704a8badf 100644
--- a/node.h
+++ b/node.h
@@ -72,7 +72,7 @@ typedef struct node node_t;
/*---------------------------------------------------------------------------*/
/*--------Global Variables---------------------------------------------------*/
/*The lock protecting the underlying filesystem*/
-extern struct mutex ulfs_lock;
+extern pthread_mutex_t ulfs_lock;
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/