Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2816 → Rev 2817

/branches/tracing/kernel/generic/src/syscall/syscall.c
97,8 → 97,10
unative_t a4, unative_t a5, unative_t a6, unative_t id)
{
unative_t rc;
istate_t fake_state;
 
if (id < SYSCALL_END) {
THREAD->uspace_state = &fake_state;
udebug_stoppable_begin();
rc = syscall_table[id](a1, a2, a3, a4, a5, a6);
} else {
113,6 → 115,7
 
udebug_syscall_event(a1, a2, a3, a4, a5, a6, id, rc);
udebug_stoppable_end();
THREAD->uspace_state = NULL;
return rc;
}