Build fix for r20329 - the R5 version of BFS did not include a send_notification() prototype (and still doesn't include notify_listener(), which should be fixed at some point, too).
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20337 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -1,12 +1,12 @@
|
|||||||
/* Query - query parsing and evaluation
|
/* Query - query parsing and evaluation
|
||||||
**
|
*
|
||||||
** Copyright 2001-2004, Axel Dörfler, [email protected]
|
* The pattern matching is roughly based on code originally written
|
||||||
** The pattern matching is roughly based on code originally written
|
* by J. Kercheval, and on code written by Kenneth Almquist, though
|
||||||
** by J. Kercheval, and on code written by Kenneth Almquist, though
|
* it shares no code.
|
||||||
** it shares no code.
|
*
|
||||||
**
|
* Copyright 2001-2007, Axel Dörfler, [email protected].
|
||||||
** This file may be used under the terms of the OpenBeOS License.
|
* This file may be used under the terms of the MIT License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#include "Query.h"
|
#include "Query.h"
|
||||||
@@ -18,6 +18,8 @@
|
|||||||
#include "BPlusTree.h"
|
#include "BPlusTree.h"
|
||||||
#include "Index.h"
|
#include "Index.h"
|
||||||
|
|
||||||
|
#include "fsproto.h"
|
||||||
|
|
||||||
#include <util/kernel_cpp.h>
|
#include <util/kernel_cpp.h>
|
||||||
#include <SupportDefs.h>
|
#include <SupportDefs.h>
|
||||||
#include <NodeMonitor.h>
|
#include <NodeMonitor.h>
|
||||||
|
|||||||
@@ -234,6 +234,11 @@ extern _IMPEXP_KERNEL void free_path(char *p);
|
|||||||
extern _IMPEXP_KERNEL void notify_select_event(selectsync *sync, uint32 ref);
|
extern _IMPEXP_KERNEL void notify_select_event(selectsync *sync, uint32 ref);
|
||||||
extern _IMPEXP_KERNEL status_t is_vnode_removed(nspace_id nsid, vnode_id vnid);
|
extern _IMPEXP_KERNEL status_t is_vnode_removed(nspace_id nsid, vnode_id vnid);
|
||||||
|
|
||||||
|
extern _IMPEXP_KERNEL status_t send_notification(port_id port, long token,
|
||||||
|
ulong what, long op, nspace_id device, nspace_id toDevice,
|
||||||
|
vnode_id parentNode, vnode_id toParentNode, vnode_id node,
|
||||||
|
const char *name);
|
||||||
|
|
||||||
// The missing prototypes can be found in the fs_interface.h file.
|
// The missing prototypes can be found in the fs_interface.h file.
|
||||||
// That part of the VFS is still compatible with BeOS :)
|
// That part of the VFS is still compatible with BeOS :)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user