The mutual exclusion classes of the Boost.Thread library are designed to serialize access to resources shared between C++ threads.

learn more… | top users | synonyms

0
votes
1answer
63 views

can mutex hang execution?

I am fairly new to using mutexes seriously. After implementing a few mutexes in various places, I realized that program execution hangs (not exit). I tried to debug it (in eclipse environment) but I ...
0
votes
1answer
258 views

Boost named_mutex unable to be shared across processes that are created by different users

I have a problem in sharing a boost named mutex across processes, which are created by different users. The first process is created by service, which logon as LocalSystem. The second process is ...
1
vote
0answers
252 views

boost::lock_guard waits forever

I'm developing a LRU-cache in C++, using boost mutexes and locks, in a multi-threaded environment. The architecture is based on a boost::unordered_map + a lock-free-queue Insertions work in ...
1
vote
0answers
67 views

Access violation in custom serial server class in MSVC++ 6.0 using boost threads

I have an application that needs to be able to accept commands from the ethernet, serial port, and/or GUI, process them, and then output the results over the ethernet and serial channels. The host OS ...
0
votes
0answers
12 views

Synchronization issue

class Test { public: Test() { _thread = new boost::thread(boost::bind(&Test::ScopedLockTest1, this)); _threadStartEvent.WaitForEvent(1000); } void ...
0
votes
0answers
132 views

heap corruption and mutex

I have a serious bug in an application, and I try to understand what is going on.. I have some logs just before the crash. I can't reproduce the bug simply. the context : Thread1: void f() { ...