Xenomai API  2.6.3
select.h
1 #ifndef _XENO_POSIX_SELECT_H
2 #define _XENO_POSIX_SELECT_H
3 
4 #if !(defined(__KERNEL__) || defined(__XENO_SIM__))
5 
6 #pragma GCC system_header
7 
8 #include_next <sys/select.h>
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 extern int __real_select (int __nfds, fd_set *__restrict __readfds,
15  fd_set *__restrict __writefds,
16  fd_set *__restrict __exceptfds,
17  struct timeval *__restrict __timeout);
18 
19 #ifdef __cplusplus
20 }
21 #endif
22 
23 #endif /* !(__KERNEL__ || __XENO_SIM__) */
24 
25 #endif /* _XENO_POSIX_SELECT_H */