Home
Download
Document
Forum
Video
Donate
Source Code
AI 助理
Sponsors
CRMEB
Apipost
腾讯云
微擎
禅道
51Talk
Products
Swoole AI 智能文档翻译器
Swoole-Compiler PHP 代码加密器
CRMEB 新零售社交电商系统
Login
Register
全部
提问
分享
讨论
建议
公告
开发框架
CodeGalaxy
发表新帖
swoole 的addtimer无法正常工作??
我使用swoole 1.6.11-stable 版本写个UDP的服务器。 需要用到addTimer(), 回调函数什么的都写好,运行后触发timer后出现以下错误,请问是什么问题? [2014-03-21 17:41:57] WARN swReactorEpoll_wait: [Reactor#0] epoll [EPOLLIN] handle failed. fd=12. Error: Inappropriate ioctl for device[25] [2014-03-21 17:41:59] WARN swReactorEpoll_wait: [Reactor#0] epoll [EPOLLIN] handle failed. fd=12. Error: Inappropriate ioctl for device[25] [2014-03-21 17:42:00] WARN swReactorEpoll_wait: [Reactor#0] epoll [EPOLLIN] handle failed. fd=12. Error: Inappropriate ioctl for device[25] [2014-03-21 17:42:01] WARN swReactorEpoll_wait: [Reactor#0] epoll [EPOLLIN] handle failed. fd=12. Error: Inappropriate ioctl for device[25] [2014-03-21 17:42:01] WARN swReactorEpoll_wait: [Reactor#0] epoll [EPOLLIN] handle failed. fd=12. Error: Inappropriate ioctl for device[25] 谢谢!
发布于9年前 · 0 次浏览 · 来自
提问
超
超懒不是超能力ℳℓ畅
我使用swoole 1.6.11-stable 版本写个UDP的服务器。 需要用到addTimer(), 回调函数什么的都写好,运行后触发timer后出现以下错误,请问是什么问题? [2014-03-21 17:41:57] WARN swReactorEpoll_wait: [Reactor#0] epoll [EPOLLIN] handle failed. fd=12. Error: Inappropriate ioctl for device[25] [2014-03-21 17:41:59] WARN swReactorEpoll_wait: [Reactor#0] epoll [EPOLLIN] handle failed. fd=12. Error: Inappropriate ioctl for device[25] [2014-03-21 17:42:00] WARN swReactorEpoll_wait: [Reactor#0] epoll [EPOLLIN] handle failed. fd=12. Error: Inappropriate ioctl for device[25] [2014-03-21 17:42:01] WARN swReactorEpoll_wait: [Reactor#0] epoll [EPOLLIN] handle failed. fd=12. Error: Inappropriate ioctl for device[25] [2014-03-21 17:42:01] WARN swReactorEpoll_wait: [Reactor#0] epoll [EPOLLIN] handle failed. fd=12. Error: Inappropriate ioctl for device[25] 谢谢!
赞
0
分享
收藏
提问
分享
讨论
建议
公告
开发框架
CodeGalaxy
评论
2015-07-24
大
大海
解决了问题,并发现一个BUG。 代码src/core/timer.c SWINLINE time_t swTimer_get_ms() { struct timeval now; if (gettimeofday(&now, NULL) < 0) { swWarn("gettimeofday fail.Error: %s[%d]", strerror(errno), errno); return SW_ERR; } return (now.tv_sec
赞
0
回复
微信公众号
热门内容
暂无回复的问答
- CodeGalaxy K3s 轻量集群节点之间如何实现负载均衡
- 关于openssl CURL WARNING swSSL_connect: SSL_connect(fd=69) failed. Error: error:141A318A:SSL routines:tls_process_ske_dhe:dh key too small[1|394]
- 多个模型如何进行事务异常回退?
- websocket开启wss报错
- 协程tcp服务器如何使用多进程?recv()方法接收信息,打印出来的pid一直是同一个。没用使用到多进程啊。