Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3017 → Rev 3018

/branches/tracing/kernel/generic/src/syscall/syscall.c
99,7 → 99,7
unative_t rc;
istate_t fake_state;
 
THREAD->uspace_state = &fake_state;
THREAD->udebug.uspace_state = &fake_state;
udebug_syscall_event(a1, a2, a3, a4, a5, a6, id, 0, false);
 
if (id < SYSCALL_END) {
117,7 → 117,7
 
udebug_syscall_event(a1, a2, a3, a4, a5, a6, id, rc, true);
udebug_stoppable_end();
THREAD->uspace_state = NULL;
THREAD->udebug.uspace_state = NULL;
return rc;
}