Changeset 44c6091f in mainline for uspace/srv/fs/minixfs/mfs.c


Ignore:
Timestamp:
2011-04-30T12:24:14Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fdc05ca
Parents:
8a49fed
Message:

cstyle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/minixfs/mfs.c

    r8a49fed r44c6091f  
    5252        .name = NAME,
    5353        .concurrent_read_write = false,
    54         .write_retains_size = false,   
     54        .write_retains_size = false,
    5555};
    5656
     
    7070 * phone for more serialized requests. Similarily, MinixFS can refuse to duplicate
    7171 * the connection. VFS should then just make use of already existing phones and
    72  * route its requests through them. To avoid paying the fibril creation price 
     72 * route its requests through them. To avoid paying the fibril creation price
    7373 * upon each request, MinixFS might want to keep the connections open after the
    7474 * request has been completed.
     
    8585                async_answer_0(iid, EOK);
    8686        }
    87        
     87
    8888        printf(NAME ": connection opened\n");
    8989        while (1) {
    9090                ipc_callid_t callid;
    9191                ipc_call_t call;
    92        
     92
    9393                callid = async_get_call(&call);
    9494                int method = IPC_GET_IMETHOD(call);
     
    150150        if (rc != EOK)
    151151                goto err;
    152        
     152
    153153        printf(NAME ": Accepting connections\n");
    154154        task_retval(0);
     
    164164/**
    165165 * @}
    166  */ 
     166 */
    167167
Note: See TracChangeset for help on using the changeset viewer.