summaryrefslogtreecommitdiff
path: root/APACHE_1_3_42/src/lib/sdbm/sdbm_tune.h
blob: 7ed7dda9b4d0bd9f63abddf7dfa701c32bd7c6cc (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
25
26
/*
 * sdbm - ndbm work-alike hashed database library
 * tuning and portability constructs [not nearly enough]
 * author: oz@nexus.yorku.ca
 */

#define BYTESIZ		8

/*
 * important tuning parms (hah)
 */

#define SEEDUPS			/* always detect duplicates */
#define BADMESS			/* generate a message for worst case:
				   cannot make room after SPLTMAX splits */
/*
 * misc
 */
#ifdef DEBUG
#define debug(x)	printf x
#else
#define debug(x)
#endif

int sdbm_fd_lock(int fd, int readonly);
int sdbm_fd_unlock(int fd);