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:
parent
bfbf61ba93
commit
cec7bfb54d
1 changed files with 4 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue