Changeset 0ecfc62 in mainline for uspace/lib/label
- Timestamp:
- 2015-10-09T18:11:08Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3a43785
- Parents:
- 372df8f
- Location:
- uspace/lib/label
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/label/include/types/liblabel.h
r372df8f r0ecfc62 65 65 66 66 struct label_info { 67 /** Disk contents */68 label_disk_cnt_t dcnt;69 67 /** Label type */ 70 68 label_type_t ltype; -
uspace/lib/label/src/dummy.c
r372df8f r0ecfc62 157 157 { 158 158 memset(linfo, 0, sizeof(label_info_t)); 159 linfo->dcnt = dc_label;160 159 linfo->ltype = lt_none; 161 160 linfo->flags = 0; -
uspace/lib/label/src/gpt.c
r372df8f r0ecfc62 547 547 { 548 548 memset(linfo, 0, sizeof(label_info_t)); 549 linfo->dcnt = dc_label;550 549 linfo->ltype = lt_gpt; 551 550 linfo->flags = lf_ptype_uuid; /* Partition type is in UUID format */ -
uspace/lib/label/src/mbr.c
r372df8f r0ecfc62 402 402 { 403 403 memset(linfo, 0, sizeof(label_info_t)); 404 linfo->dcnt = dc_label;405 404 linfo->ltype = lt_mbr; 406 405
Note:
See TracChangeset
for help on using the changeset viewer.