目录
I/O多路复用模型
多路复用的实现方式
select函数
fd_set结构体
I/O多路复用模型
多路复用的实现方式
select函数
int select(int nfds, fd_set *readfds, fd_set *writefds,
fd_set *exceptfds, struct timeval *timeout);
poll函数
int poll(struct pollfd *fds, nfds_t nfds, int timeout);
epoll API
epoll_create
epoll_wait
epoll_ctl
select函数
select函数
int select(int nfds, fd_set *readfds, fd_set *writefds,
fd_set *exceptfds, struct timeval *timeout);
//nfds: 是三个集合中编号最高的文件描述符,加上 1
//readfds/writefds/exceptfds:
可读集合/可写集合/异常集合
//timeout:
NULL:永久阻塞
0:非阻塞模式
fd_set结构体
/*将文件描述符从集合中删除*/
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);