* let arch_debug_call_with_fault_handler() at least do the call, though without fault handler for now

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38989 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ithamar R. Adema
2010-10-17 19:58:14 +00:00
parent 2d3913afba
commit 1ca7a3536c
+5 -2
View File
@@ -319,8 +319,11 @@ void
arch_debug_call_with_fault_handler(cpu_ent* cpu, jmp_buf jumpBuffer,
void (*function)(void*), void* parameter)
{
// TODO: Implement! Most likely in assembly.
longjmp(jumpBuffer, 1);
// TODO: Implement fault handling! Most likely in assembly.
// (see src/system/kernel/arch/x86/arch_x86.S)
// For now, just call the function and hope we don't crash :P
function(parameter);
}