1 Star 0 Fork 32

孙苏皖/gazelle_1

forked from src-openEuler/gazelle 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0124-fix-epoll_wait-return-when-timeout-is-0.patch 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
吴昌盛 提交于 2022-11-14 11:24 . add muti nic and fix bugs
From b37eb61864e0f54aff78ac11d20828cb57278753 Mon Sep 17 00:00:00 2001
From: wu-changsheng <[email protected]>
Date: Sat, 12 Nov 2022 14:42:56 +0800
Subject: [PATCH 10/20] fix epoll_wait return when timeout is 0
---
src/lstack/api/lstack_epoll.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/src/lstack/api/lstack_epoll.c b/src/lstack/api/lstack_epoll.c
index 6979e12..20ed224 100644
--- a/src/lstack/api/lstack_epoll.c
+++ b/src/lstack/api/lstack_epoll.c
@@ -453,6 +453,10 @@ int32_t lstack_epoll_wait(int32_t epfd, struct epoll_event* events, int32_t maxe
return lwip_num + kernel_num;
}
+ if (timeout == 0) {
+ return 0;
+ }
+
if (timeout < 0) {
ret = pthread_mutex_lock(&wakeup->wait);
} else {
@@ -654,6 +658,10 @@ int32_t lstack_poll(struct pollfd *fds, nfds_t nfds, int32_t timeout)
return lwip_num + kernel_num;
}
+ if (timeout == 0) {
+ return 0;
+ }
+
if (timeout < 0) {
ret = pthread_mutex_lock(&wakeup->wait);
} else {
--
2.23.0
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sunsuwan/gazelle_1.git
[email protected]:sunsuwan/gazelle_1.git
sunsuwan
gazelle_1
gazelle_1
master

搜索帮助