Changeset cad9c72 in mainline for uspace/srv/vfs/vfs.h
- Timestamp:
- 2008-01-08T21:58:58Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- eb27ce5a
- Parents:
- 861e7d1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.h
r861e7d1 rcad9c72 48 48 49 49 typedef enum { 50 VFS_REGISTER = VFS_FIRST, 51 VFS_MOUNT, 52 VFS_UNMOUNT, 53 VFS_LOOKUP, 54 VFS_OPEN, 55 VFS_CREATE, 50 VFS_OPEN = VFS_FIRST, 56 51 VFS_CLOSE, 57 52 VFS_READ, 58 53 VFS_WRITE, 54 VFS_TRUNCATE, 55 VFS_RENAME, 56 VFS_OPENDIR, 57 VFS_READDIR, 58 VFS_CLOSEDIR, 59 VFS_UNLINK, 60 VFS_MOUNT, 61 VFS_UNMOUNT, 62 VFS_LAST_CMN, /* keep this the last member of this enum */ 63 } vfs_request_cmn_t; 64 65 typedef enum { 66 VFS_LOOKUP = VFS_LAST_CMN, 67 VFS_LAST_CLNT, /* keep this the last member of this enum */ 68 } vfs_request_clnt_t; 69 70 typedef enum { 71 VFS_REGISTER = VFS_LAST_CMN, 59 72 VFS_SEEK, 60 VFS_RENAME, 61 VFS_UNLINK, 62 VFS_LAST, /* keep this the last member of the enum */ 63 } vfs_request_t; 73 VFS_LAST_SRV, /* keep this the last member of this enum */ 74 } vfs_request_srv_t; 64 75 65 76 … … 88 99 89 100 /** Operations. */ 90 vfs_op_t ops[VFS_LAST - VFS_FIRST];101 vfs_op_t ops[VFS_LAST_CLNT - VFS_FIRST]; 91 102 } vfs_info_t; 92 103
Note:
See TracChangeset
for help on using the changeset viewer.