I'm new to C++ and am writing a multi-threaded app whereby different writers will be pushing objects onto a stack and readers pulling them off the stack (or at least pushing the pointer to an object)..
Are there any structures built-into C++ which can handle this without adding locking code etc.? If not, what about the Boost libraries?
EDIT:
Hi. Thanks for the initial great answers. I guess one reason I thought this could be built-in was that I was thinking purely in x86 space and thought that a PUSH/POP of pointers should be an atomic action at the instruction level.
I'm not sure if my initial hunch is true or not, but I guess this would not necessarily be true across all platforms. Though if running on x86, do you get atomic PUSHes and POPs to the stack and if so, does this essentially make it lock-free?
If you don't want to use locking, you need to use a lock-free stack. This is actually not that hard (lock-free queue is more difficult). You do need a platform-specific compare-exchange primitive, such as InterlockedCompareExchange on Windows, but this isn't hard to abstract.
See here for an example in C#:
http://www.boyet.com/Articles/LockFreeRedux.html
If you are running on Windows, SLIST implements a lockfree stack (with the structures
SLIST_HEADER & SLIST_ENTRY
).The algorithm is implemented using fairly trivial push/pop singly linked list stack using interlocked functions. The only non-obvious item is the counter increment to avoid ABA issues.
Yep: Boost.Thread is great, and should fit your needs very well. (These days, many people say that you could almost count Boost as built-in functionality.)
There is still no class that you could use out-of-the-box, but once you have the synchronization primitives at hand, it really is quite simple to implement your own thread-safe wrapper around, for example,
std::stack
. It could look something like this (not implementing every method...):If you are new to C++, please learn about RAII. Relevant to this case, Boost.Thread has the "scoped lock" classes to make it difficult to shoot yourself in the leg by forgetting to release a lock.
If you ever find yourself writing code like this:
, then you should just say no, and go RAII instead (syntax not directly from Boost):
The point is that when the
scoped_lock
object goes out of scope, its destructor releases the resource -- in this case, the lock. This will always happen, no matter whether you exit the scope by throwing an exception, or by executing the oddreturn
statement that your colleague sneakily added in the middle of your function, or simply by reaching the end of the function.There is no built-in mechanism to support this in C++ nor in the Boost libraries (note: some people have written thread-safe stacks/etc. in the Boost style). You'll have to borrow some code or cook in your own synchronization.
Note that your case probably calls for a single-writer multiple-reader guard (SWMRG) in which multiple writer threads can access the stack (but only one at a given point in time) and in which multiple readers can access the stack (many at a given point in time). Richter has the reference implementation.
AFAIK, no built in support in C++. You will have to synchronize the stack operations using a simple synchronization tool. CriticalSection would do if threads belong to same proceass otherwise go for Mutex.
The current C++ standard doesn't address threading at all, so the answer to your first question is no. And in general, it is a bad idea to build locking into basic data structures, because they don't have sufficient information to perform it correctly and/or efficiently. Instead, the locking should be performed in the classes that use the data structures - in other words, in your own application classes.