Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/udebug/udebug_ipc.c

    r63e27ef rb2a1fd92  
    7272{
    7373        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) {
    7778                IPC_SET_RETVAL(call->data, rc);
    7879                ipc_answer(&TASK->kb.box, call);
     
    8485         * send a reply.
    8586         */
    86         if (rc != 0) {
    87                 IPC_SET_RETVAL(call->data, 0);
     87        if (active) {
     88                IPC_SET_RETVAL(call->data, EOK);
    8889                ipc_answer(&TASK->kb.box, call);
    8990        }
Note: See TracChangeset for help on using the changeset viewer.