Tagged Questions
0
votes
1answer
64 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 ...
1
vote
0answers
253 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 ...