退出 avahi 上的投票?
我已阅读 示例代码 但我似乎找不到退出条件线程式民意调查。
有什么线索吗?
I've read the example code but I can't seem to find the exit condition(s) for the threaded poll.
Any clues?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来只要您不从主循环调用
avahi_threaded_poll_stop(threaded_poll)
(或从助手内部调用..._quit
),线程循环就会运行线) 。您可能希望在客户端回调返回AVAHI_CLIENT_FAILURE
时执行此操作。 (请参阅 客户端示例)这就是您问的原因吗?
It looks like the threaded loop will be running as long as you don't call:
avahi_threaded_poll_stop(threaded_poll)
from the main loop (or..._quit
from inside the helper thread) . You may want to do so when the client callback returnsAVAHI_CLIENT_FAILURE
. (see client exemple)Is that why you asked?