From 1d5b7e0b23210c806fd1ba4e1777bb12602031c0 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Wed, 27 Oct 2004 21:45:04 +0000 Subject: [PATCH] _user_mount() now has a flags parameter, too. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9544 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/kernel/vfs.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/headers/private/kernel/vfs.h b/headers/private/kernel/vfs.h index d7113ed5fa..8d34ace786 100755 --- a/headers/private/kernel/vfs.h +++ b/headers/private/kernel/vfs.h @@ -82,7 +82,8 @@ status_t vfs_get_fs_node_from_path(mount_id mountID, const char *path, bool kern status_t vfs_get_module_path(const char *basePath, const char *moduleName, char *pathBuffer, size_t bufferSize); /* calls the syscall dispatcher should use for user file I/O */ -status_t _user_mount(const char *path, const char *device, const char *fs_name, void *args); +status_t _user_mount(const char *path, const char *device, const char *fs_name, + uint32 flags, void *args); status_t _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);