Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 713 → Rev 714

/kernel/trunk/arch/ia32/src/interrupt.c
116,7 → 116,7
__native *stack = (__native *) st;
if (stack[-2] < SYSCALL_END)
syscall_table[stack[-2]](stack[-5], stack[-3], stack[-4]);
stack[-2] = syscall_table[stack[-2]](stack[-5], stack[-3], stack[-4]);
else
panic("Undefined syscall %d", stack[-2]);
}