blob: 44abc2e117573b9b94ff9c3c28bab163280c0d80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef __SYS_SELECT_H
#define __SYS_SELECT_H
#define __BITS_SELECT_H_
#include <bits/select.h>
#undef __BITS_SELECT_H_
#define __BITS_TIMESPEC_H_
#include <bits/timespec.h>
#undef __BITS_TIMESPEC_H_
typedef __INT32_TYPE__ sigset_t;
int pselect(int, fd_set *restrict, fd_set *restrict, fd_set *restrict,
const struct timespec *restrict, const sigset_t *restrict);
int select(int, fd_set *restrict, fd_set *restrict, fd_set *restrict,
struct timeval *restrict);
#endif
|