filled in more of the skeleton of the heap implementation and started in on

the infrastructure surrounding connection points
This commit is contained in:
Eric J. Bowersox
2013-06-03 03:12:34 -06:00
parent 86674b67f0
commit a5aeeb2980
6 changed files with 300 additions and 12 deletions

View File

@@ -84,7 +84,7 @@ static void zero_page(UINT32 ndxPage)
ASSERT(SUCCEEDED(hr));
if (SUCCEEDED(hr))
{
StrSetMem(g_kaZero, 0, SYS_PAGE_SIZE);
StrSetMem((PVOID)g_kaZero, 0, SYS_PAGE_SIZE);
VERIFY(SUCCEEDED(MmDemapPages(NULL, g_kaZero, 1)));
}
}