Possible Duplicate:
Is there a production ready lock-free queue or hash implementation in C++
I'm looking for implementations of lock-free containers:
- Queue
- Stack
- Hash Map
- etc...
How about blocking containers:
- Blocking Queue
- Blocking Stack
Are there any good libraries out there? I would like to refrain from writing these data structures... I would much rather use something that has been tested by the community.