Subversion Repositories HelenOS

Rev

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

Rev 2615 Rev 2619
Line 91... Line 91...
91
        /*
91
        /*
92
         * This only happens for connections opened by
92
         * This only happens for connections opened by
93
         * IPC_M_CONNECT_ME_TO calls as opposed to callback connections
93
         * IPC_M_CONNECT_ME_TO calls as opposed to callback connections
94
         * created by IPC_M_CONNECT_TO_ME.
94
         * created by IPC_M_CONNECT_TO_ME.
95
         */
95
         */
96
        ipc_answer_fast_0(iid, EOK);
96
        ipc_answer_0(iid, EOK);
97
    }
97
    }
98
   
98
   
99
    dprintf("VFS-FAT connection established.\n");
99
    dprintf("VFS-FAT connection established.\n");
100
    while (1) {
100
    while (1) {
101
        ipc_callid_t callid;
101
        ipc_callid_t callid;
102
        ipc_call_t call;
102
        ipc_call_t call;
103
   
103
   
104
        callid = async_get_call(&call);
104
        callid = async_get_call(&call);
105
        switch  (IPC_GET_METHOD(call)) {
105
        switch  (IPC_GET_METHOD(call)) {
106
        default:
106
        default:
107
            ipc_answer_fast_0(callid, ENOTSUP);
107
            ipc_answer_0(callid, ENOTSUP);
108
            break;
108
            break;
109
        }
109
        }
110
    }
110
    }
111
}
111
}
112
 
112