1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#ifndef _SYS_SELECT_H
#define _SYS_SELECT_H
#include <abi-bits/signal.h>
#include <bits/ansi/time_t.h>
#include <bits/ansi/timespec.h>
#include <abi-bits/suseconds_t.h>
#include <bits/posix/timeval.h>
#include <bits/posix/fd_set.h>
#define FD_SETSIZE 1024
#ifdef __cplusplus
extern "C" {
#endif
typedef long int __fd_mask;
#define __NFDBITS (8 * (int) sizeof (__fd_mask))
typedef __fd_mask fd_mask;
#define NFDBITS __NFDBITS
#ifndef __MLIBC_ABI_ONLY
void __FD_CLR(int fd, fd_set *);
int __FD_ISSET(int fd, fd_set *);
void __FD_SET(int fd, fd_set *);
void __FD_ZERO(fd_set *);
#define FD_CLR(fd, set) __FD_CLR(fd, set)
#define FD_ISSET(fd, set) __FD_ISSET(fd, set)
#define FD_SET(fd, set) __FD_SET(fd, set)
#define FD_ZERO(set) __FD_ZERO(set)
int select(int, fd_set *__restrict, fd_set *__restrict, fd_set *__restrict,
struct timeval *__restrict);
int pselect(int, fd_set *, fd_set *, fd_set *, const struct timespec *,
const sigset_t *);
#endif /* !__MLIBC_ABI_ONLY */
#ifdef __cplusplus
}
#endif
#endif // _SYS_SELECT_H
|