select.h 704 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright (c) 2019 Linaro Limited
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_POSIX_SYS_SELECT_H_
  7. #define ZEPHYR_INCLUDE_POSIX_SYS_SELECT_H_
  8. #include <net/socket_select.h>
  9. #include <sys/_timeval.h>
  10. #define fd_set zsock_fd_set
  11. #define FD_SETSIZE ZSOCK_FD_SETSIZE
  12. #define FD_ZERO ZSOCK_FD_ZERO
  13. #define FD_SET ZSOCK_FD_SET
  14. #define FD_CLR ZSOCK_FD_CLR
  15. #define FD_ISSET ZSOCK_FD_ISSET
  16. struct timeval;
  17. static inline int select(int nfds, fd_set *readfds,
  18. fd_set *writefds, fd_set *exceptfds,
  19. struct timeval *timeout)
  20. {
  21. return zsock_select(nfds, readfds, writefds, exceptfds,
  22. (struct zsock_timeval *)timeout);
  23. }
  24. #endif /* ZEPHYR_INCLUDE_POSIX_SYS_SELECT_H_ */