Changeset d2c8533 in mainline for uspace/lib/c/include/ipc/vfs.h
- Timestamp:
- 2017-05-08T20:38:47Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f066a87
- Parents:
- 582a0b8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/ipc/vfs.h
r582a0b8 rd2c8533 41 41 42 42 #define FS_NAME_MAXLEN 20 43 #define FS_LABEL_MAXLEN 256 44 #define FS_VUID_MAXLEN 128 43 45 #define MAX_PATH_LEN (32 * 1024) 44 46 #define MAX_MNTOPTS_LEN 256 … … 62 64 } vfs_info_t; 63 65 66 /** Data returned by filesystem probe regarding a specific volume. */ 67 typedef struct { 68 char label[FS_LABEL_MAXLEN + 1]; 69 char vuid[FS_VUID_MAXLEN + 1]; 70 } vfs_fs_probe_info_t; 71 64 72 typedef enum { 65 73 VFS_IN_CLONE = IPC_FIRST_USER_METHOD, 74 VFS_IN_FSPROBE, 66 75 VFS_IN_FSTYPES, 67 76 VFS_IN_MOUNT, … … 85 94 VFS_OUT_CLOSE = IPC_FIRST_USER_METHOD, 86 95 VFS_OUT_DESTROY, 96 VFS_OUT_FSPROBE, 87 97 VFS_OUT_IS_EMPTY, 88 98 VFS_OUT_LINK,
Note:
See TracChangeset
for help on using the changeset viewer.