Changeset 3c616f6 in mainline for uspace/lib/minix/minix.h
- Timestamp:
- 2011-03-08T17:08:42Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fd282ad
- Parents:
- d4d425c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/minix/minix.h
rd4d425c r3c616f6 176 176 struct mfs_dentry { 177 177 uint16_t d_inum; 178 char d_name[MFS_MAX_NAME_LEN]; 179 } __attribute__ ((packed)); 180 181 /*MinixFS V1/V2 with 30-char filenames (Linux variant)*/ 182 struct mfs_l_dentry { 183 uint16_t d_inum; 184 char d_name[MFS_L_MAX_NAME_LEN]; 185 } __attribute__ ((packed)); 178 char d_name[0]; 179 }; 186 180 187 181 /*MinixFS V3 directory entry on-disk structure*/ 188 182 struct mfs3_dentry { 189 183 uint32_t d_inum; 190 char d_name[ MFS3_MAX_NAME_LEN];191 } __attribute__ ((packed));184 char d_name[0]; 185 }; 192 186 193 187
Note:
See TracChangeset
for help on using the changeset viewer.