0
votes
1answer
48 views

boost::condition_variable with boost::mutex::scoped_lock

Initially I was using boost::mutex::scoped_lock as such (which worked) boost::mutex::scoped_lock lock(mutex_name); condition.wait(lock); //where condition = boost::condition_variable However later ...
0
votes
1answer
43 views

'boost shared_ptr' and 'boost lock' together = messed up

I am new to both concepts shared_ptr and mutex (boost or not boost). I am trying to use it in my classes : typedef boost::shared_mutex Lock; typedef boost::unique_lock< Lock > WriteLock; ...
3
votes
2answers
299 views

boost::mutex::scoped_lock has been used and It sometimes throws the exception

I am using scoped_lock in my multithread code to exclusively access to some part of code, but sometimes it throws to the exception Access violation writing location .... boost::mutex mMutex; ...
0
votes
0answers
121 views

boost::timed_mutex: guarantee of acquiring the lock, when other thread unlocks in-between?

I have two threads which are acquiring a boost::timed_mutex protecting manipulation of common data. boost::timed_mutex mx; // thread A - running always, should execute as fast as possible while(1){ ...
4
votes
1answer
554 views

Boost 1.48.0 upgrade_to_unique_lock on Linux: Has something changed since 1.47 or I do something wrong?

I have a small cpp source and h source files with some class. It uses shared mutexes and shared locks. It compiles on windows with no errors with boost 1.48.0. It also compiled on linux (with boost ...
2
votes
4answers
1k views

boost::scoped_lock not working with local static variable?

I made the following sample program to play with boost threading: #pragma once #include "boost\thread\mutex.hpp" #include <iostream> class ThreadWorker { public: ThreadWorker() {} ...
9
votes
3answers
843 views

How to use lock_guard when returning protected data

I have a question concerning the use of boost::lock_guard (or similar scoped locks) and using variables that should be protected by the lock in a return statement. How is the order of destroying ...
1
vote
3answers
3k views

Why boost::recursive_mutex is not working as expected?

I have a custom class that uses boost mutexes and locks like this (only relevant parts): template<class T> class FFTBuf { public: FFTBuf(); [...] void lock(); ...
0
votes
1answer
1k views

How to synchronize threads when polling for state changes with boost

In my application I want to be informed by events, that another application has been started or stopped. I have an existing API to the running application which cannot be changed to accomodate ...