summaryrefslogtreecommitdiff
path: root/src/support/hash_fnv.c
diff options
context:
space:
mode:
authorAlex Gorrod <alexg@wiredtiger.com>2012-08-29 16:00:39 +1000
committerAlex Gorrod <alexg@wiredtiger.com>2012-08-29 16:00:39 +1000
commitefbbae44e71ae3e9b7e6944eddf4742b403a10f4 (patch)
tree3e3e5d3f7185b9050d9500ae74a4c9420d5f2e05 /src/support/hash_fnv.c
parentbc8ea6d32e35a264e950beb39b3c7f8603595c30 (diff)
downloadmongo-efbbae44e71ae3e9b7e6944eddf4742b403a10f4.tar.gz
Add bloom filter implementation and test.
The bloom filters will be used internally by the LSM implementation. They do not form part of the public API.
Diffstat (limited to 'src/support/hash_fnv.c')
-rw-r--r--src/support/hash_fnv.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/support/hash_fnv.c b/src/support/hash_fnv.c
index 75f52961720..457eaa2d857 100644
--- a/src/support/hash_fnv.c
+++ b/src/support/hash_fnv.c
@@ -111,7 +111,10 @@ static inline uint64_t fnv_64a_buf(void *, size_t , uint64_t);
*/
#define FNV1A_64_INIT ((uint64_t)0xcbf29ce484222325ULL)
-/* Wired Tiger wrapper around third party hash implementation. */
+/*
+ * __wt_hash_fnv64 --
+ * Wired Tiger wrapper around third party hash implementation.
+ */
uint64_t
__wt_hash_fnv64(const void *string, uint32_t len)
{