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