epoll 文件描述符操作

发布于 2024-10-15 02:33:24 字数 555 浏览 2 评论 0原文

我正在尝试了解 Linux 中的 epoll。
正常操作似乎是:

// Create the epoll_fd
int epoll_fd = epoll_create(10);

...

// Add file descriptors to it
struct epoll_event ev = {0};
ev.events |= EPOLLIN;
ev.data.ptr = ...;

/* for brevity, I don't do error checking here */
epoll_ctl(epoll_fd, EPOLL_CTL_ADD, some_fd, &ev);

...

// Wait for IO events
struct epoll_event events[10];
int num_events = epoll_wait(epoll_fd, events, 10, -1);

// Now handle the events
...

我的问题是这样的:鉴于 epoll_fd 似乎是常规文件描述符,除了三个 epoll 函数调用之外,我还可以用它执行其他文件操作吗?

I'm trying to wrap my head around epoll in Linux.
The normal operation seems to be:

// Create the epoll_fd
int epoll_fd = epoll_create(10);

...

// Add file descriptors to it
struct epoll_event ev = {0};
ev.events |= EPOLLIN;
ev.data.ptr = ...;

/* for brevity, I don't do error checking here */
epoll_ctl(epoll_fd, EPOLL_CTL_ADD, some_fd, &ev);

...

// Wait for IO events
struct epoll_event events[10];
int num_events = epoll_wait(epoll_fd, events, 10, -1);

// Now handle the events
...

My question is this: given the epoll_fd seems to be a regular file descriptor, are there any other file operations that I can do with it, besides the three epoll function calls?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夜空下最亮的亮点 2024-10-22 02:33:24

手册页

Q3是epoll fd本身
poll/epoll/可选?

A3 是的。

From the man page:

Q3 Is the epoll fd itself
poll/epoll/selectable?

A3 Yes.

七禾 2024-10-22 02:33:24

您可以poll(2)您的epoll_fd本身:)

You can poll(2) your epoll_fd itself :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文