Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2833 → Rev 2813

/branches/tracing/kernel/generic/src/syscall/syscall.c
97,10 → 97,8
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 {
115,7 → 113,6
 
udebug_syscall_event(a1, a2, a3, a4, a5, a6, id, rc);
udebug_stoppable_end();
THREAD->uspace_state = NULL;
return rc;
}