2009-03-04 04:28:35 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * 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.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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
|
|
|
|
* COPYRIGHT OWNER 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.
|
|
|
|
*/
|
2013-11-05 22:28:36 +01:00
|
|
|
|
2009-03-04 04:28:35 +01:00
|
|
|
#ifndef _SYS_SELECT_H_
|
|
|
|
#define _SYS_SELECT_H_
|
|
|
|
|
2014-12-10 05:15:48 +01:00
|
|
|
#include <linux/time.h>
|
2010-06-17 01:36:41 +02:00
|
|
|
#include <signal.h>
|
2014-12-10 05:15:48 +01:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <sys/types.h>
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
|
2013-11-05 22:28:36 +01:00
|
|
|
#define FD_SETSIZE 1024
|
|
|
|
#define NFDBITS (8 * sizeof(unsigned long))
|
|
|
|
#define __FDSET_LONGS (FD_SETSIZE/NFDBITS)
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2013-10-01 02:41:08 +02:00
|
|
|
typedef struct {
|
|
|
|
unsigned long fds_bits[__FDSET_LONGS];
|
|
|
|
} fd_set;
|
|
|
|
|
2013-11-05 22:28:36 +01:00
|
|
|
#define __FDELT(fd) ((fd) / NFDBITS)
|
|
|
|
#define __FDMASK(fd) (1UL << ((fd) % NFDBITS))
|
2016-07-22 20:36:17 +02:00
|
|
|
#define __FDS_BITS(set) (__BIONIC_CAST(static_cast, fd_set*, set)->fds_bits)
|
2013-11-05 22:28:36 +01:00
|
|
|
|
2015-01-29 06:02:34 +01:00
|
|
|
/* Inline loop so we don't have to declare memset. */
|
|
|
|
#define FD_ZERO(set) \
|
|
|
|
do { \
|
|
|
|
size_t __i; \
|
|
|
|
for (__i = 0; __i < __FDSET_LONGS; ++__i) { \
|
|
|
|
(set)->fds_bits[__i] = 0; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2013-10-03 23:08:39 +02:00
|
|
|
|
2016-07-23 03:57:12 +02:00
|
|
|
void __FD_CLR_chk(int, fd_set*, size_t) __INTRODUCED_IN(21);
|
|
|
|
void __FD_SET_chk(int, fd_set*, size_t) __INTRODUCED_IN(21);
|
|
|
|
int __FD_ISSET_chk(int, fd_set*, size_t) __INTRODUCED_IN(21);
|
2014-10-07 20:10:36 +02:00
|
|
|
|
2016-09-09 01:11:23 +02:00
|
|
|
#if defined(__BIONIC_FORTIFY) && __ANDROID_API__ >= 21
|
2013-11-05 22:28:36 +01:00
|
|
|
#define FD_CLR(fd, set) __FD_CLR_chk(fd, set, __bos(set))
|
|
|
|
#define FD_SET(fd, set) __FD_SET_chk(fd, set, __bos(set))
|
|
|
|
#define FD_ISSET(fd, set) __FD_ISSET_chk(fd, set, __bos(set))
|
2013-10-03 23:08:39 +02:00
|
|
|
#else
|
2013-11-05 22:28:36 +01:00
|
|
|
#define FD_CLR(fd, set) (__FDS_BITS(set)[__FDELT(fd)] &= ~__FDMASK(fd))
|
|
|
|
#define FD_SET(fd, set) (__FDS_BITS(set)[__FDELT(fd)] |= __FDMASK(fd))
|
|
|
|
#define FD_ISSET(fd, set) ((__FDS_BITS(set)[__FDELT(fd)] & __FDMASK(fd)) != 0)
|
2016-09-09 01:11:23 +02:00
|
|
|
#endif /* defined(__BIONIC_FORTIFY) && __ANDROID_API >= 21 */
|
2013-10-03 01:11:30 +02:00
|
|
|
|
2016-07-23 03:57:12 +02:00
|
|
|
int select(int, fd_set*, fd_set*, fd_set*, struct timeval*);
|
|
|
|
int pselect(int, fd_set*, fd_set*, fd_set*, const struct timespec*, const sigset_t*);
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif /* _SYS_SELECT_H_ */
|