NLMISC_VARIABLE(uint32,StlAllocatorMaxFree,"When EnableStlAllocatorChecker is true, this value gives the largest number of free blocks encountered");
NLMISC_VARIABLE(uintptr_t,StlAllocatorMaxFree,"When EnableStlAllocatorChecker is true, this value gives the largest number of free blocks encountered");
// setup a 'max iterations' value of 3GBytes/ sizeof(uint32*)
// setup a 'max iterations' value of 3GBytes/ sizeof(void*) (32bit)
// => this is equivalent to the total addressable memory space under linux
// => this is equivalent to the total addressable memory space under linux
staticconstuint32MaxIterations=768*1024*1024;
staticconstuintptr_tMaxIterations=768*1024*1024;
// the following static vector exists only for the use of the testStlMemoryAllocator() routine
// the following static vector exists only for the use of the testStlMemoryAllocator() routine
// - it is required to allow us to get hold of the stl small block memory allocator
// - it is required to allow us to get hold of the stl small block memory allocator