现代紫菜

文章
6
资源
0
加入时间
2年10月24天

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...