Changes between Version 3 and Version 4 of Ticket #2
- Timestamp:
- Nov 15, 2009, 3:33:44 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2 – Description
v3 v4 1 1 = VFS types = 2 2 3 {{{ 3 4 struct vfs_mount_state_s 4 5 { … … 46 47 vfs_file_seek_t *seek; 47 48 }; 48 49 }}} 49 50 50 51 = VFS operations = 51 52 53 {{{ 52 54 error_t vfs_mount(struct vfs_node_dir_s *mountpoint, 53 55 struct vfs_node_dir_s *fs_root); … … 78 80 error_t vfs_file_open(struct vfs_node_leaf_s *ref, 79 81 struct vfs_file_s **file); 82 }}}