Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 958 → Rev 959

/kernel/trunk/arch/amd64/src/syscall.c
63,10 → 63,10
 
/** Dispatch system call */
__native syscall_handler(__native a1, __native a2, __native a3,
__native id)
__native a4, __native id)
{
if (id < SYSCALL_END)
return syscall_table[id](a1,a2,a3);
return syscall_table[id](a1,a2,a3,a4);
else
panic("Undefined syscall %d", id);
}