Changeset 222e57c in mainline for uspace/srv/vfs/vfs.h


Ignore:
Timestamp:
2008-01-06T19:39:13Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
41a0d27
Parents:
10d6b858
Message:

Add libc and VFS implementation of lseek(), VFS_SEEK resp.
Add the size member to the VFS node structure (not yet initialized).

File:
1 edited

Legend:

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

    r10d6b858 r222e57c  
    136136        unsigned refcnt;        /**< Usage counter. */
    137137        link_t nh_link;         /**< Node hash-table link. */
     138        size_t size;            /**< Cached size of the file. */
    138139
    139140        /**
     
    211212extern void vfs_read(ipc_callid_t, ipc_call_t *);
    212213extern void vfs_write(ipc_callid_t, ipc_call_t *);
     214extern void vfs_seek(ipc_callid_t, ipc_call_t *);
    213215
    214216#endif
Note: See TracChangeset for help on using the changeset viewer.