Mercurial > ecos
diff packages/net/tcpip/current/include/sys/select.h @ 115:6ed91473a1cd ecos-sw-2000-08-21
Merge from eCos master repository on 2000-08-21-22:40:54-BST
| author | jlarmour |
|---|---|
| date | Fri, 25 Aug 2000 17:32:38 +0000 |
| parents | ced4577552cd |
| children |
line wrap: on
line diff
--- a/packages/net/tcpip/current/include/sys/select.h +++ b/packages/net/tcpip/current/include/sys/select.h @@ -55,6 +55,16 @@ #ifndef _SYS_SELECT_H_ #define _SYS_SELECT_H_ +#include <pkgconf/system.h> + +#ifdef CYGPKG_IO_FILEIO + +#include <cyg/io/file.h> + +void selwakeup __P((struct selinfo *)); + +#else + /* * Used to maintain information about processes that wish to be * notified when I/O becomes possible. @@ -66,4 +76,6 @@ struct selinfo { void selrecord __P((void *selector, struct selinfo *)); void selwakeup __P((struct selinfo *)); +#endif + #endif /* !_SYS_SELECT_H_ */
