Changeset e1e3b26 in mainline for uspace/srv/fs/fat/fat.h
- Timestamp:
- 2008-04-10T05:08:30Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e22632a9
- Parents:
- 44882c8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat.h
r44882c8 re1e3b26 59 59 uint16_t headcnt; /**< Number of heads. */ 60 60 uint32_t hidden_sec; /**< Hidden sectors. */ 61 uint32_t totsec i32; /**< Total sectors. 32-bit version. */61 uint32_t totsec32; /**< Total sectors. 32-bit version. */ 62 62 63 63 union { … … 141 141 142 142 typedef enum { 143 FAT_INVALID, 143 144 FAT_DIRECTORY, 144 145 FAT_FILE … … 150 151 /** VFS index is the node's first allocated cluster. */ 151 152 fs_index_t index; 153 /** VFS index of the parent node. */ 154 fs_index_t pindex; 152 155 dev_handle_t dev_handle; 153 156 /** FAT in-core node hash table link. */ 154 157 link_t fin_link; 158 /** FAT in-core node free list link. */ 159 link_t ffn_link; 155 160 size_t size; 156 161 unsigned lnkcnt; 162 unsigned refcnt; 163 bool dirty; 157 164 } fat_node_t; 158 165
Note:
See TracChangeset
for help on using the changeset viewer.