blob: e293dbbf6aa35ca8e18da14aa52c9c7d87b50d55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* Copyright (c) 2007, Novell Inc.
*
* This program is licensed under the BSD license, read LICENSE.BSD
* for further information
*/
/*
* poolid_private.h
*
*/
#ifndef POOLID_PRIVATE_H
#define POOLID_PRIVATE_H
// the size of all buffers is incremented in blocks
// these are the block values (increment values) for the
// string hashtable, rel hashtable, stringspace buffer and idarray
//
#define STRING_BLOCK 2047 // hashtable for strings
#define REL_BLOCK 1023 // hashtable for relations
#define STRINGSPACE_BLOCK 65535 // string buffer
#endif /* POOLID_PRIVATE_H */
|