dfs_select.h 417 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright (c) 2006-2018, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. */
  9. #ifndef DFS_SELECT_H__
  10. #define DFS_SELECT_H__
  11. #include <libc/libc_fdset.h>
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout);
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif