gxThread - shed_yield 等效项
是否可以使用 gxThread 函数让出处理器,就像 POSIX 调用 shed_yield 那样?
Is it possible to yield the processor using gxThread functions, like the POSIX call shed_yield does?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在gxThread文档中没有找到类似的内容,但是他们的线程模型图表明它们底层使用本机线程。因此,如果您无法用其他线程库替换 gxThread,我建议仅使用依赖于平台的调用,例如
sched_yield
或SwitchToThread
。I found nothing like that in the gxThread documentation, however their thread model diagram indicates that they use native threads underneath. So if you cannot replace gxThread with another threading library, I would recommend to just use platform-dependent calls such as
sched_yield
orSwitchToThread
.