From b513464c52de6bc2faed67a53f39e39ea4c25238 Mon Sep 17 00:00:00 2001 From: erickson Date: Fri, 5 Jan 2007 20:07:38 +0000 Subject: [PATCH] reduced hash size (just now comitting, been like this for a while on dev) git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@812 9efc2488-bf62-4759-914b-345cdb29e865 --- src/libstack/osrf_hash.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/libstack/osrf_hash.h b/src/libstack/osrf_hash.h index e5a898e..02e62c2 100644 --- a/src/libstack/osrf_hash.h +++ b/src/libstack/osrf_hash.h @@ -6,7 +6,9 @@ #include "osrf_list.h" /* 0x100 is a good size for small hashes */ -#define OSRF_HASH_LIST_SIZE 0x100 /* size of the main hash list */ +//#define OSRF_HASH_LIST_SIZE 0x100 /* size of the main hash list */ +#define OSRF_HASH_LIST_SIZE 0x10 /* size of the main hash list */ + /* used internally */ #define OSRF_HASH_NODE_FREE(h, n) \ -- 2.43.2