26 lines
785 B
C++
26 lines
785 B
C++
|
/******************************************************************************/
|
||
|
/* CONFIGURATION FOR THE BUILD ************************************************/
|
||
|
/******************************************************************************/
|
||
|
|
||
|
#ifndef _H_EBCL_CONFIG
|
||
|
#define _H_EBCL_CONFIG
|
||
|
|
||
|
|
||
|
/*= DEBUGGING OPTIONS ========================================================*/
|
||
|
|
||
|
/* Disable memory allocators */
|
||
|
//#define EBCL_CFG_NO_ALLOCATORS
|
||
|
|
||
|
|
||
|
/*= TUNING ===================================================================*/
|
||
|
|
||
|
/* Pool allocator parameters for shared pointer references */
|
||
|
#define EBCL_CFG_SHAREDPTR_REFPOOL_SIZE 512
|
||
|
#define EBCL_CFG_SHAREDPTR_REFPOOL_MAXFREE 2
|
||
|
|
||
|
/*----------------------------------------------------------------------------*/
|
||
|
|
||
|
|
||
|
|
||
|
#endif // _H_EBCL_CONFIG
|