epoll示例(水平触发)
#include<stdio.h>#include<unistd.h>#include<sys/epoll.h>struct t_connection{ int fd; void *(*call)(t_connection*);};void* f(t_connection* c){ char bu...