
15 Oct
2008
15 Oct
'08
4 p.m.
Hi. I use boost's function: lock. The code run on windows but in linux I'm stacked on the lock. my code: Code: class A{ void foo() { boost::mutex::scoped_lock lock(m_locker); doSomething();// The code never arrives here in linux. } static boost::mutex m_locker; };