00001 #ifndef _XENO_POSIX_SELECT_H
00002 #define _XENO_POSIX_SELECT_H
00003
00004 #if !(defined(__KERNEL__) || defined(__XENO_SIM__))
00005
00006 #include_next <sys/select.h>
00007
00008 #ifdef __cplusplus
00009 extern "C" {
00010 #endif
00011
00012 extern int __real_select (int __nfds, fd_set *__restrict __readfds,
00013 fd_set *__restrict __writefds,
00014 fd_set *__restrict __exceptfds,
00015 struct timeval *__restrict __timeout);
00016
00017 #ifdef __cplusplus
00018 }
00019 #endif
00020
00021 #endif
00022
00023 #endif