Changes in uspace/app/trace/trace.c [ffa2c8ef:7e752b2] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/trace/trace.c
rffa2c8ef r7e752b2 36 36 #include <stdlib.h> 37 37 #include <unistd.h> 38 #include <ipc/ipc.h> 38 39 #include <fibril.h> 39 40 #include <errno.h> … … 148 149 int rc; 149 150 150 rc = async_connect_kbox(task_id);151 rc = ipc_connect_kbox(task_id); 151 152 152 153 if (rc == ENOTSUP) { … … 286 287 { 287 288 ipc_call_t call; 288 sysarg_t phoneid;289 ipcarg_t phoneid; 289 290 290 291 if (sc_rc == (sysarg_t) IPC_CALLRET_FATAL || … … 294 295 phoneid = sc_args[0]; 295 296 296 IPC_SET_ IMETHOD(call, sc_args[1]);297 IPC_SET_METHOD(call, sc_args[1]); 297 298 IPC_SET_ARG1(call, sc_args[2]); 298 299 IPC_SET_ARG2(call, sc_args[3]); … … 330 331 phoneidx = sc_args[0]; 331 332 332 IPC_SET_ IMETHOD(question, sc_args[1]);333 IPC_SET_METHOD(question, sc_args[1]); 333 334 IPC_SET_ARG1(question, sc_args[2]); 334 335 IPC_SET_ARG2(question, sc_args[3]); … … 744 745 abort_trace = true; 745 746 udebug_end(phoneid); 746 async_hangup(phoneid);747 ipc_hangup(phoneid); 747 748 748 749 ipcp_cleanup();
Note:
See TracChangeset
for help on using the changeset viewer.