filehash.c: remove debug hash dump
[fio.git] / mutex.h
diff --git a/mutex.h b/mutex.h
index 0c862dba08998cc9dab9aa6f33849baa2a71f717..40cfc1ede75430c542b0b1fc5b2d17cacfbff5e4 100644 (file)
--- a/mutex.h
+++ b/mutex.h
@@ -6,7 +6,7 @@
 struct fio_mutex {
        pthread_mutex_t lock;
        pthread_cond_t cond;
-       unsigned int value;
+       int value;
 
        int mutex_fd;
 };
@@ -14,6 +14,15 @@ struct fio_mutex {
 extern struct fio_mutex *fio_mutex_init(int);
 extern void fio_mutex_remove(struct fio_mutex *);
 extern void fio_mutex_down(struct fio_mutex *);
+extern void fio_mutex_down_read(struct fio_mutex *);
+extern void fio_mutex_down_write(struct fio_mutex *);
 extern void fio_mutex_up(struct fio_mutex *);
+extern void fio_mutex_up_read(struct fio_mutex *);
+extern void fio_mutex_up_write(struct fio_mutex *);
+
+static inline struct fio_mutex *fio_mutex_rw_init(void)
+{
+       return fio_mutex_init(0);
+}
 
 #endif