经过充分测试的 C/C++锁定空闲队列?
可能的重复:
是否有生产就绪锁-C++ 中的自由队列或哈希实现
我正在寻找一个经过充分测试、公开可用的无锁队列的 C/C++ 实现。
我至少需要多个生产者/单个消费者的功能。如果存在的话,多个消费者就更好了。
我的目标是 VC 的 _Interlocked...
内在函数,尽管任何直接移植到端口的东西都可以。
有人可以指点一下吗?
Possible Duplicate:
Is there a production ready lock-free queue or hash implementation in C++
I am looking for a well-tested, publicly available C/C++ implementation of a lock free queue.
I need at least multiple-producers/single-consumer functionality. Multiple-consumers is even better, if exists.
I'm targetting VC's _Interlocked...
intrinsics, though anything which is straight forward to port would be fine.
Could anyone give any pointers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以沿着这条路走下去,那么 Windows 线程池总是存在的。
If you're ok to go down that route, there's always the Windows thread pool.