mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
Last changes should have been #ifdef
This commit is contained in:
parent
0bcc892fdf
commit
60c4893b93
@ -12,11 +12,19 @@
|
||||
|
||||
#include "slap.h"
|
||||
|
||||
#define BDB_IDL_DB_SIZE (1<<8) /* 64K IDL on disk */
|
||||
#ifdef 0
|
||||
/* larger IDL sizes (which blow thread stacks) */
|
||||
#define BDB_IDL_DB_SIZE (1<<16) /* 64K IDL on disk */
|
||||
#define BDB_IDL_SIZE (1<<17) /* 128K IDL in memory */
|
||||
#else
|
||||
/* reduced IDL sizes for testing */
|
||||
#define BDB_IDL_DB_SIZE (1<<8) /* 256 IDL on disk */
|
||||
#define BDB_IDL_SIZE (1<<10) /* 1K IDL in memory */
|
||||
#endif
|
||||
|
||||
#define BDB_IDL_DB_MAX (BDB_IDL_DB_SIZE-32)
|
||||
/* #define BDB_IDL_DB_ALLOC (BDB_IDL_DB_SIZE * sizeof(ID)) */
|
||||
|
||||
#define BDB_IDL_SIZE (1<<10) /* 128K IDL in memory */
|
||||
#define BDB_IDL_MAX (BDB_IDL_DB_SIZE-32)
|
||||
/* #define BDB_IDL_DB_ALLOC (BDB_IDL_DB_SIZE * sizeof(ID)) */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user