c++ 中有可用的并发队列库吗?
我想知道 C++ 中是否有可用的并发队列实现/库?
I am wondering if there is any concurrent queue implementation/library available in c++?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想知道 C++ 中是否有可用的并发队列实现/库?
I am wondering if there is any concurrent queue implementation/library available in c++?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
英特尔线程构建模块有一个: http://threadingbuildingblocks.org/files/documentation/a00129.html 。并发运行时(VS 2010 中提供)中也有一个 http://msdn .microsoft.com/en-us/library/ee355358.aspx。
The Intel Thread Building Blocks have one: http://threadingbuildingblocks.org/files/documentation/a00129.html. There is also one in the Concurrency Runtime (available with VS 2010) http://msdn.microsoft.com/en-us/library/ee355358.aspx.
threadpool 是一个跨平台的 C++ 线程池库。
threadpool is a cross-platform C++ thread pool library.