include/sys/select.h

http://www.minix3.org/ · C Header · 87 lines · 43 code · 11 blank · 33 comment · 0 complexity · 8c1581e9c10630b3c107cc5456a7d0b9 MD5 · raw file

  1. /* $NetBSD: select.h,v 1.36 2009/11/11 09:48:51 rmind Exp $ */
  2. /*-
  3. * Copyright (c) 1992, 1993
  4. * The Regents of the University of California. All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. * 1. Redistributions of source code must retain the above copyright
  10. * notice, this list of conditions and the following disclaimer.
  11. * 2. Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the distribution.
  14. * 3. Neither the name of the University nor the names of its contributors
  15. * may be used to endorse or promote products derived from this software
  16. * without specific prior written permission.
  17. *
  18. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  19. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  20. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  21. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  22. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  23. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  24. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  25. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  26. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  27. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  28. * SUCH DAMAGE.
  29. *
  30. * @(#)select.h 8.2 (Berkeley) 1/4/94
  31. */
  32. #ifndef _SYS_SELECT_H_
  33. #define _SYS_SELECT_H_
  34. #include <sys/cdefs.h>
  35. #include <sys/featuretest.h>
  36. #include <sys/fd_set.h>
  37. #ifdef _KERNEL
  38. #include <sys/selinfo.h> /* for struct selinfo */
  39. #include <sys/signal.h> /* for sigset_t */
  40. struct lwp;
  41. struct proc;
  42. struct timespec;
  43. struct cpu_info;
  44. struct socket;
  45. int selcommon(register_t *, int, fd_set *, fd_set *, fd_set *,
  46. struct timespec *, sigset_t *);
  47. void selrecord(struct lwp *selector, struct selinfo *);
  48. void selnotify(struct selinfo *, int, long);
  49. void selsysinit(struct cpu_info *);
  50. void selinit(struct selinfo *);
  51. void seldestroy(struct selinfo *);
  52. int pollsock(struct socket *, const struct timespec *, int);
  53. #else /* _KERNEL */
  54. #include <sys/sigtypes.h>
  55. #include <time.h>
  56. __BEGIN_DECLS
  57. #ifndef __LIBC12_SOURCE__
  58. #ifndef __minix
  59. int pselect(int, fd_set * __restrict, fd_set * __restrict,
  60. fd_set * __restrict, const struct timespec * __restrict,
  61. const sigset_t * __restrict) __RENAME(__pselect50);
  62. #endif /* !__minix */
  63. int select(int, fd_set * __restrict, fd_set * __restrict,
  64. fd_set * __restrict, struct timeval * __restrict) __RENAME(__select50);
  65. #endif /* __LIBC12_SOURCE__ */
  66. __END_DECLS
  67. #endif /* _KERNEL */
  68. #ifdef _MINIX
  69. /* possible select() operation types; read, write, errors */
  70. /* (FS/driver internal use only) */
  71. #define SEL_RD (1 << 0)
  72. #define SEL_WR (1 << 1)
  73. #define SEL_ERR (1 << 2)
  74. #define SEL_NOTIFY (1 << 3) /* not a real select operation */
  75. #endif
  76. #endif /* !_SYS_SELECT_H_ */