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


Ignore:
Timestamp:
2016-09-02T14:09:40Z (9 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c1f7a315
Parents:
42d08592
Message:

Introduce vfs_rdwr_internal()

This function can be used by the VFS itself to do read/write I/O on
client's file descriptor.

File:
1 edited

Legend:

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

    r42d08592 re503517a  
    224224extern void vfs_statfs(ipc_callid_t, ipc_call_t *);
    225225
     226typedef struct {
     227        void *buffer;
     228        size_t size;
     229} rdwr_io_chunk_t;
     230
     231extern int vfs_rdwr_internal(int, bool, rdwr_io_chunk_t *);
     232
    226233#endif
    227234
Note: See TracChangeset for help on using the changeset viewer.