Files
haiku-beta6/headers/private/kernel/fs/node_monitor.h
T

47 lines
1.2 KiB
C++
Raw Normal View History

/*
* Copyright 2003-2008, Axel Dörfler, [email protected]. All rights reserved.
* Distributed under the terms of the MIT License.
*/
2003-01-18 14:04:22 +00:00
#ifndef _KERNEL_NODE_MONITOR_H
#define _KERNEL_NODE_MONITOR_H
#include <fs_interface.h>
2003-01-18 14:04:22 +00:00
struct io_context;
2003-10-17 14:42:45 +00:00
#ifdef __cplusplus
// C++ only part
class NotificationListener;
extern status_t remove_node_listener(dev_t device, ino_t node,
NotificationListener& listener);
extern status_t add_node_listener(dev_t device, ino_t node, uint32 flags,
NotificationListener& listener);
2003-10-17 14:42:45 +00:00
extern "C" {
#endif
2003-01-18 14:04:22 +00:00
// private kernel API
extern status_t remove_node_monitors(struct io_context *context);
extern status_t node_monitor_init(void);
extern status_t notify_unmount(dev_t device);
extern status_t notify_mount(dev_t device, dev_t parentDevice,
ino_t parentDirectory);
2003-01-18 14:04:22 +00:00
// user-space exported calls
extern status_t _user_stop_notifying(port_id port, uint32 token);
extern status_t _user_start_watching(dev_t device, ino_t node, uint32 flags,
2003-01-18 14:04:22 +00:00
port_id port, uint32 token);
2007-08-01 14:48:44 +00:00
extern status_t _user_stop_watching(dev_t device, ino_t node, port_id port,
uint32 token);
2003-01-18 14:04:22 +00:00
2003-10-17 14:42:45 +00:00
#ifdef __cplusplus
}
#endif
2003-01-18 14:04:22 +00:00
#endif /* _KRENEL_NODE_MONITOR_H */