select.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. #ifndef _SYS_SELECT_H
  2. #define _SYS_SELECT_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <features.h>
  7. #define __NEED_size_t
  8. #define __NEED_time_t
  9. #define __NEED_suseconds_t
  10. #define __NEED_struct_timeval
  11. #define __NEED_struct_timespec
  12. #define __NEED_sigset_t
  13. #include <bits/alltypes.h>
  14. #define FD_SETSIZE 1024
  15. typedef unsigned long fd_mask;
  16. typedef struct
  17. {
  18. unsigned long fds_bits[FD_SETSIZE / 8 / sizeof(long)];
  19. } fd_set;
  20. #define FD_ZERO(s) do { int __i; unsigned long *__b=(s)->fds_bits; for(__i=sizeof (fd_set)/sizeof (long); __i; __i--) *__b++=0; } while(0)
  21. #define FD_SET(d, s) ((s)->fds_bits[(d)/(8*sizeof(long))] |= (1UL<<((d)%(8*sizeof(long)))))
  22. #define FD_CLR(d, s) ((s)->fds_bits[(d)/(8*sizeof(long))] &= ~(1UL<<((d)%(8*sizeof(long)))))
  23. #define FD_ISSET(d, s) !!((s)->fds_bits[(d)/(8*sizeof(long))] & (1UL<<((d)%(8*sizeof(long)))))
  24. int select (int, fd_set *__restrict, fd_set *__restrict, fd_set *__restrict, struct timeval *__restrict);
  25. int pselect (int, fd_set *__restrict, fd_set *__restrict, fd_set *__restrict, const struct timespec *__restrict, const sigset_t *__restrict);
  26. #ifdef __cplusplus
  27. }
  28. #endif
  29. #endif