Changeset 2d78d88 in mainline for uspace/lib/c/include
- Timestamp:
- 2018-07-25T17:04:03Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- efa3136
- Parents:
- bec18a9
- Location:
- uspace/lib/c/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/ipc/vol.h
rbec18a9 r2d78d88 46 46 VOL_PART_EMPTY, 47 47 VOL_PART_LSUPP, 48 VOL_PART_MKFS 48 VOL_PART_MKFS, 49 VOL_PART_SET_MOUNTP 49 50 } vol_request_t; 50 51 -
uspace/lib/c/include/types/label.h
rbec18a9 r2d78d88 86 86 lf_can_create_log = 0x10, 87 87 /** Currently it is possible to delete a partition */ 88 lf_can_delete_part = 0x20 88 lf_can_delete_part = 0x20, 89 /** Currently it is possible to modify a partition */ 90 lf_can_modify_part = 0x40 89 91 } label_flags_t; 90 92 -
uspace/lib/c/include/vol.h
rbec18a9 r2d78d88 53 53 extern errno_t vol_part_mkfs(vol_t *, service_id_t, vol_fstype_t, const char *, 54 54 const char *); 55 extern errno_t vol_part_set_mountp(vol_t *, service_id_t, const char *); 55 56 56 57 extern errno_t vol_fstype_format(vol_fstype_t, char **);
Note:
See TracChangeset
for help on using the changeset viewer.