I am getting a weird memory-leak issue. In the following code, blockCondition is boost::condition where lock is defined as boost::mutex::scoped_lock lock(blockingMutex), where blockingMutex is an boost::mutex.
boost::xtime xt;
boost::xtime_get(&xt, 1);
xt.sec += 10;
if(!blockCondition.timed_wait(lock, xt))
{
xt.sec += 5;
}
Specifically, the line if(!blockCondition.timed_wait(lock, xt)) uses up some extra memory, I have no clue why!
Is there any issues in how this code is being used that could give memory-leaks. I am using the Boost with version 1.47.0. Please help!