#1 Members - Reputation: 357
Posted 04 December 2012 - 12:35 PM
I have a problem with the multithreading in c++, since I use it the first time. I have a std::queue, which will have added stuff at the front at random times by thread 1. Thread 2 then reads in the objects at the back of the queue and pops them out.
But since the queue is critical memory, the programm will spit out memoryerrors from time to time.
How can I make sure that the queue is not accessed by thread 2, when thread 1 needs to write. What I found on the www wasn't really helpful, so I hope you can help me out here!
Thanks a bunch.
#2 Members - Reputation: 860
Posted 04 December 2012 - 01:53 PM
Edit:
Ffs... Full Editor button doesn't work and forum doesn't parse link correctly -.-
Edited by Zaoshi Kaba, 04 December 2012 - 01:55 PM.
#3 Members - Reputation: 5900
Posted 04 December 2012 - 01:58 PM
Edited by Álvaro, 04 December 2012 - 01:59 PM.
#4 Members - Reputation: 2048
Posted 04 December 2012 - 02:06 PM
An often-used solution for this is, as Alvaro mentioned, a lock.
Be very careful when using synchronization mechanisms like these though, careless usage of these mechanisms may lead to some really nasty issues (deadlock anyone?) which will guarantee some massive headaches.
#6 Members - Reputation: 180
Posted 05 December 2012 - 11:02 AM
If you're interested in really digging into concurrent programming for the purpose of learning, you may want to investigate writing your own lockless queue where exactly one thread can write and exactly one thread can read. It doesn't require a ton of code to do something simple and it's well worth the learning experience. The need to pass data continuously from thread A to thread B in this way is extremely common. An easy implementation is to have a "read pointer" and a "write pointer" that wraps in a circular buffer - just be careful of order of operations and make the read pointer and write pointer volatile. The "pointer" can be an index into the static-sized circular buffer.
Using a queue like this is great for passing data to be processed. It can also proxy a function call to another thread by using the "command" pattern. You can even pass exceptions this way.
Edited by aclysma, 05 December 2012 - 11:04 AM.
#7 Members - Reputation: 1408
Posted 05 December 2012 - 03:26 PM
#8 Moderators - Reputation: 7798
Posted 05 December 2012 - 03:47 PM
The easy solution is to use a lock or someone else's thread safe queue as has already been suggested. If you're just trying to solve a problem, this is definitely the way to go.
If you're interested in really digging into concurrent programming for the purpose of learning, you may want to investigate writing your own lockless queue where exactly one thread can write and exactly one thread can read. It doesn't require a ton of code to do something simple and it's well worth the learning experience. The need to pass data continuously from thread A to thread B in this way is extremely common. An easy implementation is to have a "read pointer" and a "write pointer" that wraps in a circular buffer - just be careful of order of operations and make the read pointer and write pointer volatile. The "pointer" can be an index into the static-sized circular buffer.
Using a queue like this is great for passing data to be processed. It can also proxy a function call to another thread by using the "command" pattern. You can even pass exceptions this way.
Lockless programming is a black art. I strongly suggest not messing with it until you are highly proficient with concurrent systems and understand them deeply. Moreover, it requires a very rich comprehension of how the OS and even hardware work to do lockless correctly.
IMHO, suggesting lockless programming to someone who is not already very experienced with concurrency is utterly bad advice.
[Work - ArenaNet] [Epoch Language] [Scribblings] [Journal - peek into my shattered mind]
#9 Members - Reputation: 633
Posted 05 December 2012 - 04:49 PM
https://github.com/textnode/gringo/blob/master/gringo.go
#10 Members - Reputation: 1408
Posted 06 December 2012 - 04:28 PM
The Go example is short and nice, and will always yield the CPU to another process, if there is one that wants to execute. But if there isn't, it will busy wait.
#11 Crossbones+ - Reputation: 399
Posted 06 December 2012 - 05:37 PM
A busy wait is actually the best solution for situations with high contention where wait times tend to be quite low, because it ends up being less expensive then the context switch to a sleep state. However there is a break-even point where spinning is less efficient than sleeping. Really good implementations of concurrent data structures typically start with a busy wait, and eventually go to sleep if they wait too long.I am not sure why you recommend a lock free ringbuffer, it will use a busy wait, won't it? A busy wait is seldom a good idea.
#12 Moderators - Reputation: 7798
Posted 06 December 2012 - 07:28 PM
[Work - ArenaNet] [Epoch Language] [Scribblings] [Journal - peek into my shattered mind]
#13 Moderators - Reputation: 13615
Posted 06 December 2012 - 08:58 PM
Quoted for emphasis.I strongly suggest not messing with it until you are highly proficient with concurrent systems and understand them deeply. Moreover, it requires a very rich comprehension of how the OS and even hardware work to do lockless correctly. IMHO, suggesting lockless programming to someone who is not already very experienced with concurrency is utterly bad advice.
I thought I had a very professional level of understanding regarding multi-threaded software, so I went off and wrote my own lock-free queue. Took me a month of weekends of debugging until I thought I had something solid...
After using my queue with no problems for 6 months (and having the unit tests run and succeed every day), it's unit test finally failed one day, due to a small bug!
Now, I've had years of practice doing it, and I'm still quote anxious whenever I'm doing any lock-free stuff. Definitely get some practice and do your homework before stepping into that arena! Also, I've seen a lot of implementations that make use of dynamic memory (new/malloc/etc), which locks anyway, defeating the point.






