tests: Custom allocations now use memory from Win32 heap instead of CRT heap

git-svn-id: http://pugixml.googlecode.com/svn/trunk@711 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
arseny.kapoulkine 2010-08-30 18:30:39 +00:00
parent bfbf61ba93
commit cec7bfb54d

View file

@ -28,7 +28,10 @@ namespace
void* allocate_page_aligned(size_t size)
{
// We can't use VirtualAlloc because it has 64Kb granularity so we run out of address space quickly
void* result = malloc(size + PAGE_SIZE);
// We can't use malloc because of occasional problems with CW on CRT termination
static HANDLE heap = HeapCreate(0, 0, 0);
void* result = HeapAlloc(heap, 0, size + PAGE_SIZE);
return (void*)align_to_page((size_t)result);
}