winifredhpcl

导航

2016年10月17日 #

近期编程问题——epoll failed:bad file descriptor

摘要: 出现问题:epoll_wait:Bad file descriptor 原因:IO时间的socket描述符在epoll_ctl处理前就关闭了。 解决方法:不要在epoll_ctl之前关闭socket描述符。 阅读全文

posted @ 2016-10-17 16:18 winifredBIG 阅读(630) 评论(0) 推荐(0) 编辑

近期编程问题——read:resource temporarily unavailable

摘要: EAGAIN错误 出现问题:read:resource temporarily unavailable 原因:这种错误一般出现宰非阻塞的socket编程中,资源暂时不可用。 我的解决方法:囧,后来改成了阻塞的做法就解决了这个问题。 阅读全文

posted @ 2016-10-17 16:16 winifredBIG 阅读(3563) 评论(0) 推荐(0) 编辑