Changes in uspace/lib/c/include/ipc/vfs.h [64d2b10:41e9ef7] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/ipc/vfs.h
r64d2b10 r41e9ef7 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.