trim: convert to bool
[fio.git] / filehash.h
CommitLineData
380065aa
JA
1#ifndef FIO_FILE_HASH_H
2#define FIO_FILE_HASH_H
3
4extern unsigned int file_hash_size;
5
6extern void file_hash_init(void *);
5e1d306e 7extern void file_hash_exit(void);
380065aa
JA
8extern struct fio_file *lookup_file_hash(const char *);
9extern struct fio_file *add_file_hash(struct fio_file *);
10extern void remove_file_hash(struct fio_file *);
90426237
JA
11extern void fio_file_hash_lock(void);
12extern void fio_file_hash_unlock(void);
380065aa
JA
13
14#endif