- Timestamp:
- 2017-11-26T20:13:07Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7b8f933
- Parents:
- 474c68b
- Location:
- uspace
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/trace/trace.c
r474c68b rd7e245a 284 284 sysarg_t phoneid; 285 285 286 if (sc_rc == (sysarg_t) IPC_CALLRET_FATAL)286 if (sc_rc == (sysarg_t) EOK) 287 287 return; 288 288 … … 304 304 int rc; 305 305 306 if (sc_rc == (sysarg_t) IPC_CALLRET_FATAL)306 if (sc_rc == (sysarg_t) EOK) 307 307 return; 308 308 -
uspace/lib/c/generic/ipc.c
r474c68b rd7e245a 100 100 } 101 101 102 if (rc == IPC_CALLRET_FATAL) {102 if (rc != EOK) { 103 103 /* Call asynchronous handler with error code */ 104 104 if (call->callback)
Note:
See TracChangeset
for help on using the changeset viewer.