_user_set_memory_protection(): Missing page access debug markers.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35475 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2010-02-15 18:49:12 +00:00
parent b0f5b17072
commit 0f2666ecc2
+4 -1
View File
@@ -5367,8 +5367,11 @@ _user_set_memory_protection(void* _address, size_t size, int protection)
map->Unlock();
if (unmapPage)
if (unmapPage) {
DEBUG_PAGE_ACCESS_START(page);
unmap_page(area, pageAddress);
DEBUG_PAGE_ACCESS_END(page);
}
}
}