Is there a thread-safe, non-blocking queue class in the C++?
Probably a basic question but I haven't been doing C++ for a long time...
EDIT: removed STL requirement.
|
Is there a thread-safe, non-blocking queue class in the C++? Probably a basic question but I haven't been doing C++ for a long time... EDIT: removed STL requirement. |
||||
|
|
|
Assuming your CPU has a double-pointer-wide compare-and-swap (compxchg8b on 486 or higher, compxchg16b on most amd64 machines [not present on some early models by Intel])... There is an algorithm here. Update: It's not hard to translate this to C++ if you aren't afraid of doing a bit of work. :P This algorithm assumes a "pointer with tag" structure which looks like this:
Then you want to wrap the instructions Maybe then you can write the queue node like this:
The rest is more or less a transcription of the algorithm I linked to... |
|||||||||||||||||
|
|
Since the current C++ standard doesn't even acknowledge the existence of threads, there is most certainly nothing thread-safe in the STL or any other part of the standard library. |
|||||||
|
|
This seems to have been a popular subject on Dr. Dobb's last year: |
|||
|
|
|
You need to implement it yourself or use a library implementing it. To do it yourself, you may want to have a look at this: |
|||||||||||||||
|
|
Short answer - no. STL does not concern itself with concurrency (at least on the specification level.) Current C++ standard says nothing about threads. |
|||||||||
|
|
STL containers are not thread-safe, you should implement your treatment for concurrent access. |
||||
|
|
|
The currently unofficial Boost.Lockfree is something to consider. I use both the FIFO and the atomic types. |
|||
|
|