Merge with develop

This commit is contained in:
kervala 2016-01-03 20:13:53 +01:00
commit ec58c0bc95

View file

@ -27,8 +27,8 @@
bool EnableStlAllocatorChecker = true; bool EnableStlAllocatorChecker = true;
NLMISC_VARIABLE(bool, EnableStlAllocatorChecker, "Enable stl allocator tests"); NLMISC_VARIABLE(bool, EnableStlAllocatorChecker, "Enable stl allocator tests");
uintptr_t StlAllocatorMaxFree= 0; uint64 StlAllocatorMaxFree = 0;
NLMISC_VARIABLE(uintptr_t,StlAllocatorMaxFree,"When EnableStlAllocatorChecker is true, this value gives the largest number of free blocks encountered"); NLMISC_VARIABLE(uint64, StlAllocatorMaxFree, "When EnableStlAllocatorChecker is true, this value gives the largest number of free blocks encountered");
// setup a 'max iterations' value of 3GBytes/ sizeof(void*) (32bit) // 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
@ -79,7 +79,7 @@ void testStlMemoryAllocator(const char* state)
if (p==NULL) if (p==NULL)
{ {
uintptr_t numIterations = MaxIterations - counter; uintptr_t numIterations = MaxIterations - counter;
StlAllocatorMaxFree= std::max(numIterations,StlAllocatorMaxFree); StlAllocatorMaxFree = std::max((uint64)numIterations, StlAllocatorMaxFree);
signal(SIGSEGV, NULL); signal(SIGSEGV, NULL);
return; return;
} }