Fix bad inlining in mutex.h
authorJens Axboe <jens.axboe@oracle.com>
Sat, 1 Mar 2008 14:12:48 +0000 (15:12 +0100)
committerJens Axboe <jens.axboe@oracle.com>
Sat, 1 Mar 2008 14:12:48 +0000 (15:12 +0100)
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
mutex.h

diff --git a/mutex.h b/mutex.h
index 85f5f69cee0724069d60d72d9761e2cfc19efccd..0c862dba08998cc9dab9aa6f33849baa2a71f717 100644 (file)
--- a/mutex.h
+++ b/mutex.h
@@ -13,7 +13,7 @@ struct fio_mutex {
 
 extern struct fio_mutex *fio_mutex_init(int);
 extern void fio_mutex_remove(struct fio_mutex *);
-extern inline void fio_mutex_down(struct fio_mutex *);
-extern inline void fio_mutex_up(struct fio_mutex *);
+extern void fio_mutex_down(struct fio_mutex *);
+extern void fio_mutex_up(struct fio_mutex *);
 
 #endif