Changeset b3cd9eb in mainline


Ignore:
Timestamp:
2007-11-24T18:44:06Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d2e0a8cb
Parents:
ebd9392
Message:

VFS work.
Proto implementation of VFS_READ.

Location:
uspace/srv/vfs
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/Makefile

    rebd9392 rb3cd9eb  
    4949        vfs_mount.c \
    5050        vfs_open.c \
     51        vfs_read.c \
    5152        vfs_unlink.c
    5253
  • uspace/srv/vfs/vfs.c

    rebd9392 rb3cd9eb  
    9595                        vfs_open(callid, &call);
    9696                        break;
     97                case VFS_READ:
     98                        vfs_read(callid, &call);
     99                        break;
    97100                case VFS_UNMOUNT:
    98101                case VFS_CREATE:
    99102                case VFS_CLOSE:
    100                 case VFS_READ:
    101103                case VFS_WRITE:
    102104                case VFS_SEEK:
  • uspace/srv/vfs/vfs.h

    rebd9392 rb3cd9eb  
    199199extern void vfs_mount(ipc_callid_t, ipc_call_t *);
    200200extern void vfs_open(ipc_callid_t, ipc_call_t *);
     201extern void vfs_read(ipc_callid_t, ipc_call_t *);
    201202
    202203#endif
Note: See TracChangeset for help on using the changeset viewer.