Merge branch 'dev' of https://github.com/smartxworks/fio
[fio.git] / filehash.h
... / ...
CommitLineData
1#ifndef FIO_FILE_HASH_H
2#define FIO_FILE_HASH_H
3
4#include "lib/types.h"
5
6extern void file_hash_init(void);
7extern void file_hash_exit(void);
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 *);
11extern void fio_file_hash_lock(void);
12extern void fio_file_hash_unlock(void);
13extern bool file_bloom_exists(const char *, bool);
14
15#endif