1994-05-24 06:09:53 -04:00
|
|
|
/*-
|
|
|
|
|
* Copyright (c) 1992, 1993
|
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
|
* are met:
|
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
|
* without specific prior written permission.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
|
*
|
1999-08-27 21:08:13 -04:00
|
|
|
* $FreeBSD$
|
1994-05-24 06:09:53 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _SYS_SELECT_H_
|
|
|
|
|
#define _SYS_SELECT_H_
|
|
|
|
|
|
2002-06-15 19:39:10 -04:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
#include <sys/_types.h>
|
|
|
|
|
|
2002-06-16 14:40:16 -04:00
|
|
|
#include <sys/_sigset.h>
|
2002-12-30 23:13:50 -05:00
|
|
|
#include <sys/_timeval.h>
|
2002-06-15 19:39:10 -04:00
|
|
|
#include <sys/timespec.h>
|
|
|
|
|
|
2002-09-23 13:45:51 -04:00
|
|
|
typedef unsigned long __fd_mask;
|
|
|
|
|
#if __BSD_VISIBLE
|
|
|
|
|
typedef __fd_mask fd_mask;
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-10-05 01:40:48 -04:00
|
|
|
#ifndef _SIGSET_T_DECLARED
|
|
|
|
|
#define _SIGSET_T_DECLARED
|
|
|
|
|
typedef __sigset_t sigset_t;
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-09-23 13:45:51 -04:00
|
|
|
/*
|
|
|
|
|
* Select uses bit masks of file descriptors in longs. These macros
|
|
|
|
|
* manipulate such bit fields (the filesystem macros use chars).
|
|
|
|
|
* FD_SETSIZE may be defined by the user, but the default here should
|
|
|
|
|
* be enough for most uses.
|
|
|
|
|
*/
|
|
|
|
|
#ifndef FD_SETSIZE
|
2014-04-28 09:42:41 -04:00
|
|
|
#define FD_SETSIZE 1024
|
2002-09-23 13:45:51 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#define _NFDBITS (sizeof(__fd_mask) * 8) /* bits per mask */
|
|
|
|
|
#if __BSD_VISIBLE
|
|
|
|
|
#define NFDBITS _NFDBITS
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef _howmany
|
|
|
|
|
#define _howmany(x, y) (((x) + ((y) - 1)) / (y))
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
typedef struct fd_set {
|
2002-11-17 11:22:18 -05:00
|
|
|
__fd_mask __fds_bits[_howmany(FD_SETSIZE, _NFDBITS)];
|
2002-09-23 13:45:51 -04:00
|
|
|
} fd_set;
|
2002-11-17 11:22:18 -05:00
|
|
|
#if __BSD_VISIBLE
|
|
|
|
|
#define fds_bits __fds_bits
|
|
|
|
|
#endif
|
2002-09-23 13:45:51 -04:00
|
|
|
|
2002-11-17 11:22:18 -05:00
|
|
|
#define __fdset_mask(n) ((__fd_mask)1 << ((n) % _NFDBITS))
|
2002-11-28 10:34:32 -05:00
|
|
|
#define FD_CLR(n, p) ((p)->__fds_bits[(n)/_NFDBITS] &= ~__fdset_mask(n))
|
2002-09-23 13:45:51 -04:00
|
|
|
#if __BSD_VISIBLE
|
2002-11-17 11:22:18 -05:00
|
|
|
#define FD_COPY(f, t) (void)(*(t) = *(f))
|
2002-09-23 13:45:51 -04:00
|
|
|
#endif
|
2006-01-06 17:12:46 -05:00
|
|
|
#define FD_ISSET(n, p) (((p)->__fds_bits[(n)/_NFDBITS] & __fdset_mask(n)) != 0)
|
2002-11-28 10:34:32 -05:00
|
|
|
#define FD_SET(n, p) ((p)->__fds_bits[(n)/_NFDBITS] |= __fdset_mask(n))
|
2002-11-17 11:22:18 -05:00
|
|
|
#define FD_ZERO(p) do { \
|
|
|
|
|
fd_set *_p; \
|
|
|
|
|
__size_t _n; \
|
|
|
|
|
\
|
|
|
|
|
_p = (p); \
|
|
|
|
|
_n = _howmany(FD_SETSIZE, _NFDBITS); \
|
|
|
|
|
while (_n > 0) \
|
|
|
|
|
_p->__fds_bits[--_n] = 0; \
|
|
|
|
|
} while (0)
|
2002-06-15 19:39:10 -04:00
|
|
|
|
|
|
|
|
#ifndef _KERNEL
|
2002-09-23 13:45:51 -04:00
|
|
|
|
2002-06-15 19:39:10 -04:00
|
|
|
__BEGIN_DECLS
|
|
|
|
|
int pselect(int, fd_set *__restrict, fd_set *__restrict, fd_set *__restrict,
|
2002-06-16 14:40:16 -04:00
|
|
|
const struct timespec *__restrict, const sigset_t *__restrict);
|
2002-09-23 13:45:51 -04:00
|
|
|
#ifndef _SELECT_DECLARED
|
|
|
|
|
#define _SELECT_DECLARED
|
|
|
|
|
/* XXX missing restrict type-qualifier */
|
|
|
|
|
int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
|
|
|
|
|
#endif
|
2002-06-15 19:39:10 -04:00
|
|
|
__END_DECLS
|
|
|
|
|
#endif /* !_KERNEL */
|
|
|
|
|
|
2001-01-03 22:29:16 -05:00
|
|
|
#endif /* _SYS_SELECT_H_ */
|