diff --git a/src/kernel/core/fs/vfs_select.h b/src/kernel/core/fs/vfs_select.h index b26318a6d0..267852b180 100644 --- a/src/kernel/core/fs/vfs_select.h +++ b/src/kernel/core/fs/vfs_select.h @@ -1,10 +1,14 @@ /* -** Copyright 2002, Axel Dörfler, axeld@pinc-software.de. All rights reserved. -** Distributed under the terms of the OpenBeOS License. +** Copyright 2002-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. +** Distributed under the terms of the Haiku License. */ #ifndef VFS_SELECT_H #define VFS_SELECT_H + +#include + + typedef struct select_info { uint16 selected_events; uint16 events; @@ -16,20 +20,6 @@ typedef struct select_sync { 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 */