xref: /haiku/src/tests/add-ons/kernel/kernelland_emu/node_monitor.cpp (revision fc7456e9b1ec38c941134ed6d01c438cf289381e)
1 /*
2  * Copyright 2024, Haiku, Inc. All rights reserved.
3  * Distributed under the terms of the MIT license.
4  */
5 
6 #include <fs/node_monitor.h>
7 
8 
9 status_t
10 remove_node_listener(dev_t device, ino_t node, NotificationListener& listener)
11 {
12 	return B_NOT_SUPPORTED;
13 }
14 
15 
16 status_t
17 add_node_listener(dev_t device, ino_t node, uint32 flags,
18 	NotificationListener& listener)
19 {
20 	return B_NOT_SUPPORTED;
21 }
22