Moved the public fs functions to fs_interface.h.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7800 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-06-07 14:21:51 +00:00
parent 72de05e13a
commit aad3f70c86

View File

@ -69,12 +69,6 @@ int vfs_setrlimit(int resource, const struct rlimit * rlp);
// or similar places.
extern status_t notify_select_event(struct selectsync *sync, uint32 ref, uint8 event);
/* calls needed by fs internals */
extern status_t vfs_new_vnode(mount_id mountID, vnode_id vnodeID, fs_vnode privateNode);
extern status_t vfs_get_vnode(mount_id mountID, vnode_id vnodeID, fs_vnode *_privateNode);
extern status_t vfs_put_vnode(mount_id mountID, vnode_id vnodeID);
extern status_t vfs_remove_vnode(mount_id mountID, vnode_id vnodeID);
/* calls needed by the VM for paging */
int vfs_get_vnode_from_fd(int fd, bool kernel, void **vnode);
status_t vfs_get_vnode_from_path(const char *path, bool kernel, void **vnode);