Changeset eadaeae8 in mainline for uspace/app/trace/trace.c
- Timestamp:
- 2018-03-21T20:58:49Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3be9d10
- Parents:
- 874381a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/trace/trace.c
r874381a readaeae8 282 282 { 283 283 ipc_call_t call; 284 sysarg_t phoneid;284 cap_phone_handle_t phandle; 285 285 286 286 if (sc_rc != EOK) 287 287 return; 288 288 289 ph oneid =sc_args[0];289 phandle = (cap_phone_handle_t) sc_args[0]; 290 290 291 291 IPC_SET_IMETHOD(call, sc_args[1]); … … 296 296 IPC_SET_ARG5(call, 0); 297 297 298 ipcp_call_out(ph oneid, &call, 0);298 ipcp_call_out(phandle, &call, 0); 299 299 } 300 300 … … 311 311 312 312 if (rc == EOK) { 313 ipcp_call_out( sc_args[0], &call, 0);314 } 315 } 316 317 static void sc_ipc_wait(sysarg_t *sc_args, int sc_rc)313 ipcp_call_out((cap_phone_handle_t) sc_args[0], &call, 0); 314 } 315 } 316 317 static void sc_ipc_wait(sysarg_t *sc_args, cap_call_handle_t sc_rc) 318 318 { 319 319 ipc_call_t call; … … 390 390 break; 391 391 case SYS_IPC_WAIT: 392 sc_ipc_wait(sc_args, sc_rc);392 sc_ipc_wait(sc_args, (cap_call_handle_t) sc_rc); 393 393 break; 394 394 default:
Note:
See TracChangeset
for help on using the changeset viewer.