X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=mutex.h;fp=mutex.h;h=8c1a71118d680a34f9598e755991859174a2353a;hp=17380de289a36cb7a76e34870db3c64efd7aa1a5;hb=66608372288ecfe94abbc4b12a89b5c18071897f;hpb=e39c0676d1af779004194ae4b3cc111db49bef7a diff --git a/mutex.h b/mutex.h index 17380de2..8c1a7111 100644 --- a/mutex.h +++ b/mutex.h @@ -2,6 +2,7 @@ #define FIO_MUTEX_H #include +#include "lib/types.h" #define FIO_MUTEX_MAGIC 0x4d555445U #define FIO_RWLOCK_MAGIC 0x52574c4fU @@ -30,7 +31,7 @@ extern void __fio_mutex_remove(struct fio_mutex *); extern void fio_mutex_remove(struct fio_mutex *); extern void fio_mutex_up(struct fio_mutex *); extern void fio_mutex_down(struct fio_mutex *); -extern int fio_mutex_down_trylock(struct fio_mutex *); +extern bool fio_mutex_down_trylock(struct fio_mutex *); extern int fio_mutex_down_timeout(struct fio_mutex *, unsigned int); extern void fio_rwlock_read(struct fio_rwlock *);