Changes between Version 3 and Version 4 of Ticket #2


Ignore:
Timestamp:
Nov 15, 2009, 3:33:44 PM (16 years ago)
Author:
Nicolas Pouillon
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2 – Description

    v3 v4  
    11= VFS types =
    22
     3{{{
    34struct vfs_mount_state_s
    45{
     
    4647        vfs_file_seek_t *seek;
    4748};
    48 
     49}}}
    4950
    5051= VFS operations =
    5152
     53{{{
    5254error_t vfs_mount(struct vfs_node_dir_s *mountpoint,
    5355                                  struct vfs_node_dir_s *fs_root);
     
    7880error_t vfs_file_open(struct vfs_node_leaf_s *ref,
    7981                                          struct vfs_file_s **file);
     82}}}