blob: 4551bb0427ec6fc12e726bb4161b50ad98d79c40 [file] [log] [blame]
Jens Axboe243bfe12014-04-02 15:46:58 -06001#ifndef FIO_LOCK_FILE_H
2#define FIO_LOCK_FILE_H
3
Elliott Hugheseda3a602017-05-19 18:53:02 -07004#include "lib/types.h"
5
Jens Axboe243bfe12014-04-02 15:46:58 -06006extern void fio_lock_file(const char *);
Elliott Hugheseda3a602017-05-19 18:53:02 -07007extern bool fio_trylock_file(const char *);
Jens Axboe243bfe12014-04-02 15:46:58 -06008extern void fio_unlock_file(const char *);
9
10extern int fio_filelock_init(void);
11extern void fio_filelock_exit(void);
12
13#endif