Changeset 1433ecda in mainline for uspace/lib/minix/minix.h
- Timestamp:
- 2018-04-04T15:42:37Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2c4e1cc
- Parents:
- 47b2d7e3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/minix/minix.h
r47b2d7e3 r1433ecda 113 113 /* Total number of zones on the device (V2 only) */ 114 114 uint32_t s_nzones2; 115 } __attribute__ 115 } __attribute__((packed)); 116 116 117 117 … … 144 144 /* Filesystem disk format version */ 145 145 int8_t s_disk_version; 146 } __attribute__ 146 } __attribute__((packed)); 147 147 148 148 /* MinixFS V1 inode structure as it is on disk */ … … 158 158 /* Block numbers for indirect zones */ 159 159 uint16_t i_izone[V1_NR_INDIRECT_ZONES]; 160 } __attribute__ 160 } __attribute__((packed)); 161 161 162 162 /* MinixFS V2 inode structure as it is on disk (also valid for V3). */ … … 174 174 /* Block numbers for indirect zones */ 175 175 uint32_t i_izone[V2_NR_INDIRECT_ZONES]; 176 } __attribute__ 176 } __attribute__((packed)); 177 177 178 178 /* MinixFS V1/V2 directory entry on-disk structure */
Note:
See TracChangeset
for help on using the changeset viewer.