select.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /* Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Library General Public License as
  5. published by the Free Software Foundation; either version 2 of the
  6. License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Library General Public License for more details.
  11. You should have received a copy of the GNU Library General Public
  12. License along with the GNU C Library; see the file COPYING.LIB. If not,
  13. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. Boston, MA 02111-1307, USA. */
  15. #ifndef _SYS_SELECT_H
  16. # error "Never use <bits/select.h> directly; include <sys/select.h> instead."
  17. #endif
  18. #if defined __GNUC__ && __GNUC__ >= 2
  19. # define __FD_ZERO(fdsp) \
  20. do { \
  21. int __d0, __d1; \
  22. __asm__ __volatile__ ("cld; rep; stosl" \
  23. : "=c" (__d0), "=D" (__d1) \
  24. : "a" (0), "0" (sizeof (__fd_set) \
  25. / sizeof (__fd_mask)), \
  26. "1" (&__FDS_BITS (fdsp)[0]) \
  27. : "memory"); \
  28. } while (0)
  29. # define __FD_SET(fd, fdsp) \
  30. __asm__ __volatile__ ("btsl %1,%0" \
  31. : "=m" (__FDS_BITS (fdsp)[__FDELT (fd)]) \
  32. : "r" (((int) (fd)) % __NFDBITS) \
  33. : "cc","memory")
  34. # define __FD_CLR(fd, fdsp) \
  35. __asm__ __volatile__ ("btrl %1,%0" \
  36. : "=m" (__FDS_BITS (fdsp)[__FDELT (fd)]) \
  37. : "r" (((int) (fd)) % __NFDBITS) \
  38. : "cc","memory")
  39. # define __FD_ISSET(fd, fdsp) \
  40. (__extension__ \
  41. ({register char __result; \
  42. __asm__ __volatile__ ("btl %1,%2 ; setcb %b0" \
  43. : "=q" (__result) \
  44. : "r" (((int) (fd)) % __NFDBITS), \
  45. "m" (__FDS_BITS (fdsp)[__FDELT (fd)]) \
  46. : "cc"); \
  47. __result; }))
  48. #else /* ! GNU CC */
  49. /* We don't use `memset' because this would require a prototype and
  50. the array isn't too big. */
  51. # define __FD_ZERO(set) \
  52. do { \
  53. unsigned int __i; \
  54. __fd_set *__arr = (set); \
  55. for (__i = 0; __i < sizeof (__fd_set) / sizeof (__fd_mask); ++__i) \
  56. __FDS_BITS (__arr)[__i] = 0; \
  57. } while (0)
  58. # define __FD_SET(d, set) (__FDS_BITS (set)[__FDELT (d)] |= __FDMASK (d))
  59. # define __FD_CLR(d, set) (__FDS_BITS (set)[__FDELT (d)] &= ~__FDMASK (d))
  60. # define __FD_ISSET(d, set) (__FDS_BITS (set)[__FDELT (d)] & __FDMASK (d))
  61. #endif /* GNU CC */