Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
267 views

boost::interprocess::scoped_lock application crash inside lock

I'm using boost::interprocess::scoped_lock, if the application crash for some reason inside the scope the mutex isn't released. Next time the application is executed (without restarting the computer), ...
2
votes
3answers
1k views

boost scoped_lock. Will this lock?

solved I changed the bfs::directory_iterator Queue to a std::string queue, and surprisingly solved the problem. Hi, I have a gut feeling that i'm doing things wrong. I've implemented (or attempted ...
1
vote
1answer
199 views

Will boost::recursive_mutex::scoped_locks destructor reference an unlocked mutex?

After calling unlock() on a boost::recursive_mutex::scoped_lock, will the lock object reference the mutex somehow in its destructor? The lock still retains a reference to the mutex after the call to ...
0
votes
1answer
61 views

What's the difference between boost::signals2::mutex and boost::thread::mutex?

I'm using scoped_lock and mutex to implement a version of a BlockingQueue posted in a different SO question, but there are multiple different precompiled headers for both of them in boost. ...
0
votes
3answers
104 views

“Nested” scoped_lock

My shortened, simplified class looks as follows: class A { public: // ... methodA(); methodB(); protected: mutable boost::mutex m_mutex; sometype* m_myVar; } ...
0
votes
0answers
85 views

Boost::thread, glut and data sharing

I think I have a problem in my program. I must create an object that continuosly communicate with an external tracking system and get coordinates of point from it. I wrapped this class inside a ...
0
votes
3answers
129 views

Looking for a function (or a macro) to return a boost::scoped_lock

I'm looking for code shortening idea. I'm using boost::scoped_lock to lock a boost::mutex but I want to shorten the amount of code I'm writing. Currently I have a mutex defined in my class and the ...
0
votes
1answer
192 views

Memory leak caused by a wrong usage of scoped_lock?

I have a memory leak, and I guess it's caused by a wrong usage of scoped_lock (Boost). I however don't manage to find the exact problem, and I do believe that the way the code has been written is not ...