* Added a small private API (<fs/select_sync_pool.h>) to support FSs
and drivers that need to provide special select() support with managing select notification information. * Renamed vfs_select.c to *.cpp and fixed the resulting C++ compiler errors. Added tracing macros. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@11886 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* Copyright 2005, Ingo Weinhold, [email protected].
|
||||
* Distributed under the terms of the MIT License.
|
||||
*/
|
||||
#ifndef _KERNEL_SELECT_SYNC_POOL_H
|
||||
#define _KERNEL_SELECT_SYNC_POOL_H
|
||||
|
||||
#include <SupportDefs.h>
|
||||
|
||||
struct selectsync;
|
||||
typedef struct select_sync_pool select_sync_pool;
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
|
||||
status_t add_select_sync_pool_entry(select_sync_pool **pool, selectsync *sync,
|
||||
uint32 ref, uint8 event);
|
||||
status_t remove_select_sync_pool_entry(select_sync_pool **pool,
|
||||
selectsync *sync, uint8 event);
|
||||
void notify_select_event_pool(select_sync_pool *pool, uint8 event);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
#endif // _KERNEL_SELECT_SYNC_POOL_H
|
||||
Reference in New Issue
Block a user