summaryrefslogtreecommitdiff
path: root/filehash.h
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2018-03-05 10:52:39 -0800
committerElliott Hughes <enh@google.com>2018-03-05 10:52:39 -0800
commitace079c5a11bcba2ca90b787efc102cefd20bc22 (patch)
tree0a09692cb56db12d862eb42fe90ec155cc309b62 /filehash.h
parenta133df91fa72701e4e448ca1ff81e0c41ed2df8b (diff)
downloadfio-main.tar.gz
Remove fio.HEADmastermain
Bug: http://b/74195807 Test: builds Change-Id: I06217c3cc317817180e545b7be998ee1463f3202
Diffstat (limited to 'filehash.h')
-rw-r--r--filehash.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/filehash.h b/filehash.h
deleted file mode 100644
index 5fecc3b1..00000000
--- a/filehash.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef FIO_FILE_HASH_H
-#define FIO_FILE_HASH_H
-
-#include "lib/types.h"
-
-extern void file_hash_init(void);
-extern void file_hash_exit(void);
-extern struct fio_file *lookup_file_hash(const char *);
-extern struct fio_file *add_file_hash(struct fio_file *);
-extern void remove_file_hash(struct fio_file *);
-extern void fio_file_hash_lock(void);
-extern void fio_file_hash_unlock(void);
-extern bool file_bloom_exists(const char *, bool);
-
-#endif