Subversion Repositories HelenOS

Rev

Rev 4496 | Rev 4618 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4496 Rev 4617
Line 168... Line 168...
168
        case NS_TASK_WAIT:
168
        case NS_TASK_WAIT:
169
            id = (task_id_t)
169
            id = (task_id_t)
170
                MERGE_LOUP32(IPC_GET_ARG1(call), IPC_GET_ARG2(call));
170
                MERGE_LOUP32(IPC_GET_ARG1(call), IPC_GET_ARG2(call));
171
            wait_for_task(id, &call, callid);
171
            wait_for_task(id, &call, callid);
172
            continue;
172
            continue;
-
 
173
        case NS_RETVAL:
-
 
174
            retval = ns_task_retval(&call);
-
 
175
            break;
173
        default:
176
        default:
174
            retval = ENOENT;
177
            retval = ENOENT;
175
            break;
178
            break;
176
        }
179
        }
177
       
180