This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
threads is no longer customized, as of commit c0ff91434b
[perl5.git] / ext / SDBM_File / tune.h
CommitLineData
463ee0b2
LW
1/*
2 * sdbm - ndbm work-alike hashed database library
3 * tuning and portability constructs [not nearly enough]
4 * author: oz@nexus.yorku.ca
5 */
6
7#define BYTESIZ 8
8
463ee0b2
LW
9/*
10 * important tuning parms (hah)
11 */
12
13#define SEEDUPS /* always detect duplicates */
14#define BADMESS /* generate a message for worst case:
15 cannot make room after SPLTMAX splits */
16/*
17 * misc
18 */
19#ifdef DEBUG
20#define debug(x) printf x
21#else
22#define debug(x)
23#endif