Fix build issue raised by changes in notify_select_event() prototype.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9320 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Philippe Houdoin 2004-10-13 10:29:00 +00:00
parent b6e6c72041
commit 8880d1a7b4
2 changed files with 9 additions and 2 deletions

View File

@ -236,7 +236,7 @@ extern _IMPEXP_KERNEL void free_path(char *p);
extern _IMPEXP_KERNEL status_t notify_listener(int op, nspace_id nsid,
vnode_id vnida, vnode_id vnidb,
vnode_id vnidc, const char *name);
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 send_notification(port_id port, long token,
ulong what, long op, nspace_id nsida,
nspace_id nsidb, vnode_id vnida,

View File

@ -3392,9 +3392,16 @@ send_notification(port_id port, long token, ulong what, long op, nspace_id nsida
#endif
}
#ifdef COMPILE_FOR_R5
void
notify_select_event(selectsync *sync, uint32 ref)
{
}
#else
status_t
notify_select_event(selectsync *sync, uint32 ref, uint8 event)
{
return B_UNSUPPORTED;
}
#endif