Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2825 → Rev 2826

/branches/tracing/kernel/generic/src/udebug/udebug.c
81,7 → 81,7
 
if (TASK->dt_state == UDEBUG_TS_ACTIVE) {
klog_printf("udebug_syscall_event");
call = TASK->debug_go_call;
call = THREAD->debug_go_call;
IPC_SET_RETVAL(call->data, 0);
IPC_SET_ARG1(call->data, UDEBUG_EVENT_SYSCALL);
IPC_SET_ARG2(call->data, id);
102,7 → 102,7
*/
THREAD->debug_stop = true;
 
ipc_answer(&TASK->answerbox, TASK->debug_go_call);
ipc_answer(&TASK->answerbox, THREAD->debug_go_call);
spinlock_unlock(&TASK->lock);
interrupts_restore(ipl);