poll.h 588 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Copyright (c) 2019 Linaro Limited
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_POSIX_POLL_H_
  7. #define ZEPHYR_INCLUDE_POSIX_POLL_H_
  8. #include <net/socket.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. #define pollfd zsock_pollfd
  13. #define POLLIN ZSOCK_POLLIN
  14. #define POLLOUT ZSOCK_POLLOUT
  15. #define POLLERR ZSOCK_POLLERR
  16. #define POLLHUP ZSOCK_POLLHUP
  17. #define POLLNVAL ZSOCK_POLLNVAL
  18. static inline int poll(struct pollfd *fds, int nfds, int timeout)
  19. {
  20. return zsock_poll(fds, nfds, timeout);
  21. }
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25. #endif /* ZEPHYR_INCLUDE_POSIX_POLL_H_ */