From 318ea28bebe3f0ff51b75818cca14d487a56d1ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Thu, 4 Sep 2003 04:18:48 +0000 Subject: [PATCH] Added internal syscalls (_user/_kern) for fs_read_info() and fs_write_info(). Not yet accessible from the outside. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4493 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/kernel/vfs.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/headers/private/kernel/vfs.h b/headers/private/kernel/vfs.h index f9da601755..1db55a8263 100755 --- a/headers/private/kernel/vfs.h +++ b/headers/private/kernel/vfs.h @@ -87,6 +87,8 @@ int vfs_set_cache_ptr(void *vnode, void *cache); /* calls kernel code should make for file I/O */ int sys_mount(const char *path, const char *device, const char *fs_name, void *args); int sys_unmount(const char *path); +status_t _kern_read_fs_info(dev_t device, struct fs_info *info); +status_t _kern_write_fs_info(dev_t device, const struct fs_info *info, int mask); int sys_sync(void); int sys_open_entry_ref(dev_t device, ino_t inode, const char *name, int omode); int sys_open(const char *path, int omode); @@ -127,6 +129,8 @@ int sys_setcwd(int fd, const char *path); /* calls the syscall dispatcher should use for user file I/O */ int user_mount(const char *path, const char *device, const char *fs_name, void *args); int user_unmount(const char *path); +status_t _user_read_fs_info(dev_t device, struct fs_info *info); +status_t _user_write_fs_info(dev_t device, const struct fs_info *info, int mask); int user_sync(void); int user_open_entry_ref(dev_t device, ino_t inode, const char *name, int omode); int user_open(const char *path, int omode);