作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有人知道如何让我的主线程事件循环看起来像这样:
const int MY_CUST_MSG(877);
xcb_generic_event_t *event;
while (event = xcb_wait_for_event(connection)) {
switch (event->response_type & ~0x80) {
case MY_CUST_MSG:
// do something
break;
default:
// Unknown event type, ignore it
debug_log("Unknown event: ", event->response_type);
}
free(event);
}
要对来自辅助线程的消息使用react?
最佳答案
xcb_wait_for_event()
等待从服务器接收事件。您必须通过服务器向自己发送消息,但我建议采用另一种方法:
使用 xcb_file_descriptor()
获取 X 连接的底层文件描述符。
设置一个内部管道,您的应用程序可以使用该管道在线程之间向自身发送消息。
使用 xcb_poll_for_event()
,它是 xcb_wait_for_event()
的非阻塞版本,以实现非阻塞检查是否存在事件阅读,如果是,请阅读。
在您的内部管道上执行非阻塞读取,以检查来自另一个线程的任何内部消息。
如果第 3 步或第 4 步均未产生消息,请使用 poll()
等待一个或另一个事件。
您还需要使用 xcb_flush()
手动刷新所有事件,并使用 xcb_connection_has_error()
检查与 X 服务器的致命连接错误。
See the tutorial获取更多信息。
关于c++ - 在 XCB 事件循环中从线程触发到主线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40478307/
有人可以向我澄清主线 DHT 规范中的声明吗? Upon inserting the first node into its routing table and when starting up th
我正在尝试使用 USB 小工具驱动程序使嵌入式设备作为 MTP 设备工作。 我知道 Android 从大容量存储设备切换到 MTP 设备已经有一段时间了,并且找到了 source code for M
我是一名优秀的程序员,十分优秀!