haiku/src/kernel/core/fs/vfs_select.h

36 lines
634 B
C
Raw Normal View History

/*
** Copyright 2002, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
#ifndef VFS_SELECT_H
#define VFS_SELECT_H
typedef struct select_info {
uint16 selected_events;
uint16 events;
} select_info;
typedef struct select_sync {
sem_id sem;
uint32 count;
select_info *set;
} select_sync;
enum select_events {
B_SELECT_READ = 1,
B_SELECT_WRITE,
B_SELECT_ERROR,
B_SELECT_PRI_READ,
B_SELECT_PRI_WRITE,
B_SELECT_HIGH_PRI_READ,
B_SELECT_HIGH_PRI_WRITE,
B_SELECT_DISCONNECTED
};
#define SELECT_FLAG(type) (1L << (type - 1))
#endif /* VFS_SELECT_H */