[Date Prev][Date Next] [Chronological] [Thread] [Top]

Syntax question...



Howard recommended that I modify back-bdb/idl.h BDB_IDL_DB_SIZE and 
BDB_IDL_UM_SIZE to work around a problem I reported (ITS #3343).

Those lines of code are:

/* IDL sizes - likely should be even bigger
 *   limiting factors: sizeof(ID), thread stack size
 */
#define BDB_IDL_DB_SIZE         (1<<16) /* 64K IDL on disk */
#define BDB_IDL_UM_SIZE         (1<<17) /* 128K IDL in memory */


This is probably something I should know - but what numbers would I put in here if I wanted to quadruple each of these variable values?  I don't understand the syntax of (1<<16) (and haven't been able to find any documentation)

Thanks, 

Dan