Removed some unneeded includes, making the header easier to swallow.

Renamed the image and node monitor syscalls to the new scheme.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8235 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2004-06-29 20:12:29 +00:00
parent 3f403c721c
commit bb45cbbb30
2 changed files with 12 additions and 14 deletions
+4 -4
View File
@@ -1,7 +1,7 @@
#ifndef _KERNEL_NODE_MONITOR_H
#define _KERNEL_NODE_MONITOR_H
/*
** Copyright 2003, Axel Dörfler, [email protected]. All rights reserved.
** Copyright 2003-2004, Axel Dörfler, [email protected]. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
@@ -20,10 +20,10 @@ extern status_t remove_node_monitors(struct io_context *context);
extern status_t node_monitor_init(void);
// 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,
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,
port_id port, uint32 token);
extern status_t user_stop_watching(dev_t device, ino_t node, uint32 flags,
extern status_t _user_stop_watching(dev_t device, ino_t node, uint32 flags,
port_id port, uint32 token);
#ifdef __cplusplus