Changeset f17667a in mainline for uspace/srv/vfs/vfs.h
- Timestamp:
- 2008-02-17T13:32:53Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2616965d
- Parents:
- b5553a2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.h
rb5553a2 rf17667a 48 48 49 49 typedef enum { 50 VFS_OPEN = VFS_FIRST, 51 VFS_CLOSE, 52 VFS_READ, 50 VFS_READ = VFS_FIRST, 53 51 VFS_WRITE, 54 52 VFS_TRUNCATE, 55 VFS_RENAME,56 VFS_OPENDIR,57 VFS_READDIR,58 VFS_CLOSEDIR,59 VFS_MKDIR,60 VFS_UNLINK,61 53 VFS_MOUNT, 62 54 VFS_UNMOUNT, … … 66 58 typedef enum { 67 59 VFS_LOOKUP = VFS_LAST_CMN, 60 VFS_FREE, 68 61 VFS_LAST_CLNT, /* keep this the last member of this enum */ 69 62 } vfs_request_clnt_t; … … 71 64 typedef enum { 72 65 VFS_REGISTER = VFS_LAST_CMN, 66 VFS_OPEN, 67 VFS_CLOSE, 73 68 VFS_SEEK, 69 VFS_MKDIR, 70 VFS_UNLINK, 71 VFS_RENAME, 74 72 VFS_LAST_SRV, /* keep this the last member of this enum */ 75 73 } vfs_request_srv_t;
Note:
See TracChangeset
for help on using the changeset viewer.