Changes in uspace/lib/c/include/ipc/vfs.h [41e9ef7:64d2b10] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/ipc/vfs.h
r41e9ef7 r64d2b10 42 42 #define FS_NAME_MAXLEN 20 43 43 #define MAX_PATH_LEN (64 * 1024) 44 #define MAX_MNTOPTS_LEN 25645 44 #define PLB_SIZE (2 * MAX_PATH_LEN) 46 45 … … 57 56 /** Unique identifier of the fs. */ 58 57 char name[FS_NAME_MAXLEN + 1]; 59 unsigned int instance;60 58 bool concurrent_read_write; 61 59 bool write_retains_size; … … 64 62 typedef enum { 65 63 VFS_IN_OPEN = IPC_FIRST_USER_METHOD, 64 VFS_IN_OPEN_NODE, 66 65 VFS_IN_READ, 67 66 VFS_IN_WRITE, … … 70 69 VFS_IN_FSTAT, 71 70 VFS_IN_CLOSE, 72 VFS_IN_PING,73 71 VFS_IN_MOUNT, 74 72 VFS_IN_UNMOUNT, … … 79 77 VFS_IN_RENAME, 80 78 VFS_IN_STAT, 81 VFS_IN_DUP, 82 VFS_IN_WAIT_HANDLE, 83 VFS_IN_MTAB_GET, 79 VFS_IN_DUP 84 80 } vfs_in_request_t; 85 81
Note:
See TracChangeset
for help on using the changeset viewer.