11 Star 76 Fork 99

OpenHarmony / third_party_lwip

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
0078-posix_api-support-select.patch 1.38 KB
一键复制 编辑 原始数据 按行查看 历史
Aurora 提交于 2023-12-07 03:26 . update lwip to 2.1.3-39.oe2203sp1
From 189022c0a2438f099caa6cbfcac1a7ca76cf1e71 Mon Sep 17 00:00:00 2001
From: yangchen <yangchen145@huawei.com>
Date: Fri, 3 Nov 2023 14:55:15 +0800
Subject: [PATCH] posix_api: support select
---
src/api/posix_api.c | 1 +
src/include/posix_api.h | 1 +
2 files changed, 2 insertions(+)
diff --git a/src/api/posix_api.c b/src/api/posix_api.c
index b7334da..0dc6ad1 100644
--- a/src/api/posix_api.c
+++ b/src/api/posix_api.c
@@ -114,6 +114,7 @@ int posix_api_init(void)
CHECK_DLSYM_RET_RETURN(posix_api->sigaction_fn = dlsym(handle, "sigaction"));
CHECK_DLSYM_RET_RETURN(posix_api->poll_fn = dlsym(handle, "poll"));
CHECK_DLSYM_RET_RETURN(posix_api->ioctl_fn = dlsym(handle, "ioctl"));
+ CHECK_DLSYM_RET_RETURN(posix_api->select_fn = dlsym(handle, "select"));
/* lstack helper api */
posix_api->get_socket = get_socket;
diff --git a/src/include/posix_api.h b/src/include/posix_api.h
index a73e2ec..cde37e3 100644
--- a/src/include/posix_api.h
+++ b/src/include/posix_api.h
@@ -78,6 +78,7 @@ typedef struct {
int (*sigaction_fn)(int signum, const struct sigaction *act, struct sigaction *oldact);
int (*poll_fn)(struct pollfd *fds, nfds_t nfds, int timeout);
int (*ioctl_fn)(int fd, int cmd, ...);
+ int (*select_fn)(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout);
int ues_posix;
} posix_api_t;
--
2.23.0
1
https://gitee.com/openharmony/third_party_lwip.git
git@gitee.com:openharmony/third_party_lwip.git
openharmony
third_party_lwip
third_party_lwip
master

搜索帮助