man page: fix incorrect description for disable_clat option
[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 *);
11
12#endif