Added empty (until TLS steps in) function stubs for:

permit_page_faults(), and forbid_page_faults().


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2134 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2002-12-03 01:50:55 +00:00
parent 353b9f6bce
commit aeb5053982

View File

@ -1804,6 +1804,21 @@ int vm_init_postthread(kernel_args *ka)
return 0;
}
void
permit_page_faults(void)
{
// ToDo: implement me when TLS is there
}
void
forbid_page_faults(void)
{
// ToDo: implement me when TLS is there
}
int vm_page_fault(addr address, addr fault_address, bool is_write, bool is_user, addr *newip)
{
int err;