博客园  :: 首页  :: 联系 :: 管理

2013年8月3日

摘要: epoll用法回顾先简单回顾下如何使用C库封装的3个epoll相关的系统调用。更详细的用法参见http://www.cnblogs.com/apprentice89/archive/2013/05/06/3063039.htmlint epoll_create(int size);int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event);int epoll_wait(int epfd, struct epoll_event *events,int maxevents, int timeout);使用起来很清晰,首先要调 阅读全文

posted @ 2013-08-03 15:30 Apprentice89 阅读(21244) 评论(4) 推荐(7) 编辑