Changeset 7313e7a in mainline for uspace/srv/vfs/vfs.h


Ignore:
Timestamp:
2007-09-28T20:11:02Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2c2e0c6
Parents:
0e0476ad
Message:

VFS work.
This is a checkpoint commit.
It introduces initial, still incomplete, code for VFS-side VFS_MOUNT request.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs.h

    r0e0476ad r7313e7a  
    129129extern link_t fs_head;          /**< List of registered file systems. */
    130130
    131 extern vfs_node_t *rootfs;      /**< Root node of the root file system. */
     131extern vfs_node_t rootfs;       /**< Root node of the root file system. */
    132132
    133133#define MAX_PATH_LEN            (64 * 1024)
     
    149149extern void vfs_release_phone(int);
    150150
    151 extern int fs_name_to_handle(char *name, bool lock);
     151extern int fs_name_to_handle(char *, bool);
    152152
    153 extern int vfs_lookup_internal(char *path, size_t len, vfs_node_t *result,
    154     vfs_node_t *altroot);
     153extern int vfs_lookup_internal(char *, size_t, vfs_node_t *, vfs_node_t *);
    155154
    156155extern void vfs_register(ipc_callid_t, ipc_call_t *);
Note: See TracChangeset for help on using the changeset viewer.