Linux 系统编程基础
文章平均质量分 55
icegloves
C语言菜鸡
展开
-
阿里云服务器新用户优惠
新用户的购买链接:https://www.aliyun.com/activity/daily/bestoffer?userCode=40hhhswk老用户续费,也有优惠:https://www.aliyun.com/daily-act/ecs/care?userCode=40hhhswk原创 2021-01-17 17:13:22 · 1206 阅读 · 0 评论 -
select与epoll
在Linux系统编程中,会遇到一个进程处理多个IO问题,例如://本例想实现循环读取鼠标和键盘的输入int fd_mice = open("/dev/input/mice", O_RDONLY);int fd_key = opeb("/dev/input/event1",O_RDONLY);char buf[1024];while(1){ if(read(fd_key,buf,si原创 2017-06-11 20:22:15 · 1166 阅读 · 0 评论