2020-11-28 20:01:51 +00:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_SOCK_WEPOLL_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_SOCK_WEPOLL_H_
|
|
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
|
|
COSMOPOLITAN_C_START_
|
2023-05-14 16:32:15 +00:00
|
|
|
#include "libc/calls/struct/sigset.h"
|
2020-11-28 20:01:51 +00:00
|
|
|
|
|
|
|
typedef union epoll_data {
|
|
|
|
void *ptr;
|
|
|
|
int fd;
|
|
|
|
uint32_t u32;
|
|
|
|
uint64_t u64;
|
|
|
|
} epoll_data_t;
|
|
|
|
|
|
|
|
struct thatispacked epoll_event {
|
|
|
|
uint32_t events;
|
|
|
|
epoll_data_t data;
|
|
|
|
};
|
|
|
|
|
|
|
|
int epoll_create(int);
|
|
|
|
int epoll_create1(int);
|
|
|
|
int epoll_ctl(int, int, int, struct epoll_event *);
|
|
|
|
int epoll_wait(int, struct epoll_event *, int, int);
|
2023-05-14 16:32:15 +00:00
|
|
|
int epoll_pwait(int, struct epoll_event *, int, int, const sigset_t *);
|
2020-11-28 20:01:51 +00:00
|
|
|
|
|
|
|
COSMOPOLITAN_C_END_
|
|
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_SOCK_WEPOLL_H_ */
|