cygwin 支持 ucontext.h 用户上下文切换
cygwin 似乎不支持用户上下文切换(由 ucontext.h
支持)。
鉴于我需要在 cygwin 下开发一个用户上下文切换应用程序,有什么解决方案吗?
It appears that cygwin doesn't support user context switching (supported by ucontext.h
).
Given I need to developed a user-context switching application under cygwin, is there any solution for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您或许可以编写自己的实现,围绕 Fiber API。 http://msdn.microsoft.com/en-us/库/ms682661(VS.85).aspx
You can probably write your own implementation, wrapping around the Fiber API. http://msdn.microsoft.com/en-us/library/ms682661(VS.85).aspx
在 C++ 中,您可以尝试 Context来自Boost,它有类似的界面。
In C++ you could try the Context from Boost, it has a similar interface.