Changeset cb65bbe in mainline for uspace/srv/vfs/vfs.h


Ignore:
Timestamp:
2013-07-23T22:43:48Z (12 years ago)
Author:
Ji?? Z?rev?cky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0b18364
Parents:
c442f63
Message:

Implement server side of VFS_WALK and VFS_OPEN2.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs.h

    rc442f63 rcb65bbe  
    137137        /** Number of file handles referencing this file. */
    138138        unsigned refcnt;
     139
     140        int permissions;
     141        bool open_read;
     142        bool open_write;
    139143
    140144        /** Append on write. */
     
    223227extern void vfs_get_mtab(ipc_callid_t, ipc_call_t *);
    224228
     229extern void vfs_walk(ipc_callid_t, ipc_call_t *);
     230extern void vfs_create(ipc_callid_t, ipc_call_t *);
     231extern void vfs_open2(ipc_callid_t, ipc_call_t *);
     232
    225233#endif
    226234
Note: See TracChangeset for help on using the changeset viewer.