Subversion Repositories HelenOS-historic

Rev

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

Rev 1353 Rev 1365
Line 63... Line 63...
63
    while (1) {    
63
    while (1) {    
64
        ipc_call_t call;
64
        ipc_call_t call;
65
        ipc_callid_t callid;
65
        ipc_callid_t callid;
66
        int retval;
66
        int retval;
67
 
67
 
68
        callid = ipc_wait_for_call(&call, 0);
68
        callid = ipc_wait_for_call(&call);
69
        switch(IPC_GET_METHOD(call)) {
69
        switch(IPC_GET_METHOD(call)) {
70
        case IPC_M_CONNECT_ME_TO:
70
        case IPC_M_CONNECT_ME_TO:
71
            IPC_SET_RETVAL(call, 0);
71
            IPC_SET_RETVAL(call, 0);
72
            break;
72
            break;
73
        }
73
        }