Tagged Questions
1
vote
1answer
47 views
Boost: Threading and mutexes in a functor
I'm trying something simple with threads and mutexes in C++ with boost.
This is the code:
#include <iostream>
#include <boost/thread/thread.hpp>
class mutex_test
{
private:
...
0
votes
1answer
68 views
Using boost::bind with a class containing a boost::mutex
I'm working on a server using a watchdir to add items to an internal collection. The watchdir is browsed periodically by a thread which is created like this :
this->watchDirThread = new ...
1
vote
1answer
272 views
Boost::thread mutex issue: Try to lock, access violation
I am currently learning how to multithread with c++, and for that im using boost::thread.
I'm using it for a simple gameengine, running three threads.
Two of the threads are reading and writing to ...
2
votes
1answer
205 views
How do I extend C++ boost list container to implement a thread safe implementation using boost upgrade mutex?
I wrote some sample test code to verify the functionality of using boost upgrade mutexes to implement a read/write mutex lock over a boost list container. I have ten threads, 5 are readers, 5 are ...
0
votes
3answers
457 views
multithreaded program producer/consumer [boost]
I'm playing with boost library and C++. I want to create a multithreaded program that contains a producer, conumer, and a stack. The procuder fills the stack, the consumer remove items (int) from the ...
0
votes
2answers
284 views
Using Boost mutex in two different classes
i am using boost mutex in MessageQueue class as a private member in the following method
void MessageQueue::Dequeuee()
{
Request rq(messageWareHouse.front().reqID,messageWareHouse.front().seq,
...
0
votes
1answer
115 views
boost-threads: How can I pass a scoped_lock to a callee?
I'm new to the boost threads library. I have a situation where I acquire a scoped_lock in one function and need to wait on it in a callee.
The code is on the lines of:
class HavingMutex
{
public:
...
0
votes
5answers
507 views
Manually releasing boost locks?
For the sake of learning combinatorics of boost::thread I'm implementing a simple barrier (BR) for threads which lock a common mutex (M). However, as far as I get it when going to BR.wait() the locks ...
1
vote
1answer
680 views
Release boost::mutex from destructor
As std::vector isn't thread-safe, I was trying to build a very simple encapsulation around it which makes it thread-safe.
This works quite well, but there's one little problem.
When the instance of ...