``select''noks of'kqueue'n not x11连接时不

发布于 2025-01-17 11:48:12 字数 528 浏览 0 评论 0原文

这会阻止直到有X11事件:

int x11_fd = ConnectionNumber(display);
fd_set in_fds;
FD_ZERO(&in_fds);
FD_SET(x11_fd, &in_fds);
select(x11_fd + 1, &in_fds, NULL, NULL, NULL);

这立即返回:

int x11_fd = ConnectionNumber(display);
int kq = kqueue();
struct kevent ev;
EV_SET(&ev, x11_fd, EVFILT_READ, EV_ADD, 0, 0, 0);
kevent(kq, &ev, 1, NULL, 0, NULL);

为什么?我是否错误地使用kqueue错误?

This blocks until there's an X11 event available:

int x11_fd = ConnectionNumber(display);
fd_set in_fds;
FD_ZERO(&in_fds);
FD_SET(x11_fd, &in_fds);
select(x11_fd + 1, &in_fds, NULL, NULL, NULL);

This just immediately returns:

int x11_fd = ConnectionNumber(display);
int kq = kqueue();
struct kevent ev;
EV_SET(&ev, x11_fd, EVFILT_READ, EV_ADD, 0, 0, 0);
kevent(kq, &ev, 1, NULL, 0, NULL);

Why? Am I using kqueue incorrectly?

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

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

发布评论

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

评论(1

胡渣熟男 2025-01-24 11:48:12

我相当确定我误解了 kqueue 的 API。

OP 中显示的调用仅将过滤器添加到队列中,不会等待它们。为此,需要将一个单独的 kevent 数组传递给 eventlist 参数。

kevent(kq, NULL, 0, &ev, 1, NULL);

I'm fairly sure I misunderstood the API of kqueue.

The call shown in the OP only adds the filters to the queue, it doesn't wait on them. In order to do that, a separate array of kevents needs to be passed to the eventlist param.

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