Changes in kernel/generic/src/udebug/udebug_ipc.c [b2a1fd92:63e27ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/udebug/udebug_ipc.c
rb2a1fd92 r63e27ef 72 72 { 73 73 int rc; 74 bool active; 75 76 rc = udebug_begin(call, &active); 77 if (rc != EOK) { 74 75 rc = udebug_begin(call); 76 if (rc < 0) { 78 77 IPC_SET_RETVAL(call->data, rc); 79 78 ipc_answer(&TASK->kb.box, call); … … 85 84 * send a reply. 86 85 */ 87 if ( active) {88 IPC_SET_RETVAL(call->data, EOK);86 if (rc != 0) { 87 IPC_SET_RETVAL(call->data, 0); 89 88 ipc_answer(&TASK->kb.box, call); 90 89 }
Note:
See TracChangeset
for help on using the changeset viewer.