9a9b91c940
It's finally done.. Signed-off-by: kaguya <vpshinomiya@protonmail.com>
50 lines
1.2 KiB
C
50 lines
1.2 KiB
C
|
|
#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 *__set);
|
|
int __FD_ISSET(int __fd, fd_set *__set);
|
|
void __FD_SET(int __fd, fd_set *__set);
|
|
void __FD_ZERO(fd_set *__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 __nfds, fd_set *__restrict __readfds, fd_set *__restrict __writefds,
|
|
fd_set *__restrict __exceptfds, struct timeval *__restrict __timeout);
|
|
int pselect(int __nfds, fd_set *__restrict __readfds, fd_set *__restrict __writefds,
|
|
fd_set *__exceptfds, const struct timespec *__timeout, const sigset_t *__sigmask);
|
|
|
|
#endif /* !__MLIBC_ABI_ONLY */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _SYS_SELECT_H */
|
|
|