From f72c9ca90e48d604b82b0328cb11a76168ef7847 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Mon, 5 Jul 2004 18:32:43 +0000 Subject: [PATCH] Now redirects _kern_write_fs_info() as well. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8310 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/storage/LibBeAdapter.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/kits/storage/LibBeAdapter.cpp b/src/kits/storage/LibBeAdapter.cpp index 57cef33c4a..9e046a344a 100644 --- a/src/kits/storage/LibBeAdapter.cpp +++ b/src/kits/storage/LibBeAdapter.cpp @@ -43,6 +43,8 @@ _kern_dir_node_ref_to_path(dev_t device, ino_t inode, char *buffer, size_t size) // private libroot.so functions +extern "C" status_t _kwfsstat_(dev_t device, const struct fs_info *info, long mask); + extern "C" status_t _kstart_watching_vnode_(dev_t device, ino_t node, uint32 flags, port_id port, int32 handlerToken); @@ -54,6 +56,13 @@ extern "C" status_t _kstop_watching_vnode_(dev_t device, ino_t node, extern "C" status_t _kstop_notifying_(port_id port, int32 handlerToken); +status_t +_kern_write_fs_info(dev_t device, const struct fs_info *info, int mask) +{ + return _kwfsstat_(device, info, mask); +} + + status_t _kern_stop_notifying(port_id port, uint32 token) {