Changeset b0f00a9 in mainline for uspace/lib/c/include/ipc/vfs.h
- Timestamp:
- 2011-11-06T22:21:05Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 898e847
- Parents:
- 2bdf8313 (diff), 7b5f4c9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
uspace/lib/c/include/ipc/vfs.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/ipc/vfs.h
r2bdf8313 rb0f00a9 42 42 #define FS_NAME_MAXLEN 20 43 43 #define MAX_PATH_LEN (64 * 1024) 44 #define MAX_MNTOPTS_LEN 256 44 45 #define PLB_SIZE (2 * MAX_PATH_LEN) 45 46 … … 56 57 /** Unique identifier of the fs. */ 57 58 char name[FS_NAME_MAXLEN + 1]; 59 unsigned int instance; 58 60 bool concurrent_read_write; 59 61 bool write_retains_size; … … 62 64 typedef enum { 63 65 VFS_IN_OPEN = IPC_FIRST_USER_METHOD, 64 VFS_IN_OPEN_NODE,65 66 VFS_IN_READ, 66 67 VFS_IN_WRITE, … … 69 70 VFS_IN_FSTAT, 70 71 VFS_IN_CLOSE, 72 VFS_IN_PING, 71 73 VFS_IN_MOUNT, 72 74 VFS_IN_UNMOUNT, … … 77 79 VFS_IN_RENAME, 78 80 VFS_IN_STAT, 79 VFS_IN_DUP 81 VFS_IN_DUP, 82 VFS_IN_WAIT_HANDLE, 83 VFS_IN_MTAB_GET, 80 84 } vfs_in_request_t; 81 85
Note:
See TracChangeset
for help on using the changeset viewer.
