X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=mutex.h;h=17380de289a36cb7a76e34870db3c64efd7aa1a5;hb=4fbe186054f09654f31c9a77b743d2aa40c85e54;hp=4f3486df7a3b01163515cd548678445d7e40b924;hpb=8b4e954ca8cf671c25e6df1d675caa34b64f7678;p=fio.git diff --git a/mutex.h b/mutex.h index 4f3486df..17380de2 100644 --- a/mutex.h +++ b/mutex.h @@ -24,10 +24,13 @@ enum { FIO_MUTEX_UNLOCKED = 1, }; +extern int __fio_mutex_init(struct fio_mutex *, int); extern struct fio_mutex *fio_mutex_init(int); +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 int fio_mutex_down_timeout(struct fio_mutex *, unsigned int); extern void fio_rwlock_read(struct fio_rwlock *);