Changeset b17186d in mainline for uspace/srv/vfs/vfs.h
- Timestamp:
- 2008-11-29T15:39:24Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- dfd77382
- Parents:
- abd36f7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.h
rabd36f7 rb17186d 191 191 #define L_PARENT 64 192 192 193 typedef enum vfs_node_type { 194 VFS_NODE_UNKNOWN, 195 VFS_NODE_FILE, 196 VFS_NODE_DIRECTORY, 197 } vfs_node_type_t; 198 193 199 typedef struct { 194 200 vfs_triplet_t triplet; 201 vfs_node_type_t type; 195 202 size_t size; 196 203 unsigned lnkcnt; … … 214 221 215 222 link_t nh_link; /**< Node hash-table link. */ 223 224 vfs_node_type_t type; /**< Partial info about the node type. */ 225 216 226 size_t size; /**< Cached size if the node is a file. */ 217 227
Note:
See TracChangeset
for help on using the changeset viewer.