mirror of https://github.com/F-Stack/f-stack.git
74 lines
1.7 KiB
C
74 lines
1.7 KiB
C
|
#ifndef _FF_EPOLL_H
|
||
|
#define _FF_EPOLL_H
|
||
|
|
||
|
//#include <sys/stdint.h>
|
||
|
//#include <sys/queue.h>
|
||
|
|
||
|
#ifndef _KERNEL
|
||
|
#include <stdint.h>
|
||
|
#else
|
||
|
#include <sys/stdint.h>
|
||
|
#include <sys/types.h>
|
||
|
#endif
|
||
|
|
||
|
enum EPOLL_EVENTS
|
||
|
{
|
||
|
EPOLLIN = 0x001,
|
||
|
#define EPOLLIN EPOLLIN
|
||
|
EPOLLPRI = 0x002,
|
||
|
#define EPOLLPRI EPOLLPRI
|
||
|
EPOLLOUT = 0x004,
|
||
|
#define EPOLLOUT EPOLLOUT
|
||
|
EPOLLRDNORM = 0x040,
|
||
|
#define EPOLLRDNORM EPOLLRDNORM
|
||
|
EPOLLRDBAND = 0x080,
|
||
|
#define EPOLLRDBAND EPOLLRDBAND
|
||
|
EPOLLWRNORM = 0x100,
|
||
|
#define EPOLLWRNORM EPOLLWRNORM
|
||
|
EPOLLWRBAND = 0x200,
|
||
|
#define EPOLLWRBAND EPOLLWRBAND
|
||
|
EPOLLMSG = 0x400,
|
||
|
#define EPOLLMSG EPOLLMSG
|
||
|
EPOLLERR = 0x008,
|
||
|
#define EPOLLERR EPOLLERR
|
||
|
EPOLLHUP = 0x010,
|
||
|
#define EPOLLHUP EPOLLHUP
|
||
|
EPOLLRDHUP = 0x2000,
|
||
|
#define EPOLLRDHUP EPOLLRDHUP
|
||
|
EPOLLWAKEUP = 1u << 29,
|
||
|
#define EPOLLWAKEUP EPOLLWAKEUP
|
||
|
EPOLLONESHOT = 1u << 30,
|
||
|
#define EPOLLONESHOT EPOLLONESHOT
|
||
|
EPOLLET = 1u << 31
|
||
|
#define EPOLLET EPOLLET
|
||
|
};
|
||
|
|
||
|
|
||
|
/* Valid opcodes ( "op" parameter ) to issue to epoll_ctl(). */
|
||
|
#define EPOLL_CTL_ADD 1 /* Add a file descriptor to the interface. */
|
||
|
#define EPOLL_CTL_DEL 2 /* Remove a file descriptor from the interface. */
|
||
|
#define EPOLL_CTL_MOD 3 /* Change file descriptor epoll_event structure. */
|
||
|
|
||
|
|
||
|
typedef union epoll_data
|
||
|
{
|
||
|
void *ptr;
|
||
|
int fd;
|
||
|
uint32_t u32;
|
||
|
uint64_t u64;
|
||
|
} epoll_data_t;
|
||
|
|
||
|
struct epoll_event
|
||
|
{
|
||
|
uint32_t events; /* Epoll events */
|
||
|
epoll_data_t data; /* User data variable */
|
||
|
};
|
||
|
|
||
|
/*warpper epoll api.*/
|
||
|
int ff_epoll_create(int size);
|
||
|
int ff_epoll_ctl(int epfd, int op, int fd, struct epoll_event *event);
|
||
|
int ff_epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout);
|
||
|
int ff_epoll_close(int epfd);
|
||
|
|
||
|
#endif
|