Subversion Repositories HelenOS

Rev

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

Rev 2658 Rev 2659
Line 108... Line 108...
108
    ipcarg_t rc;
108
    ipcarg_t rc;
109
    async_wait_for(msg, &rc);
109
    async_wait_for(msg, &rc);
110
    size_t bytes = IPC_GET_ARG1(answer);
110
    size_t bytes = IPC_GET_ARG1(answer);
111
 
111
 
112
    /*
112
    /*
-
 
113
     * Update the position pointer.
-
 
114
     */
-
 
115
    file->pos += bytes;
-
 
116
 
-
 
117
    /*
113
     * FS server's reply is the final result of the whole operation we
118
     * FS server's reply is the final result of the whole operation we
114
     * return to the client.
119
     * return to the client.
115
     */
120
     */
116
    ipc_answer_1(rid, rc, bytes);
121
    ipc_answer_1(rid, rc, bytes);
117
}
122
}