26 Jul
2009
26 Jul
'09
4:26 p.m.
AMDG Boost lzw wrote:
I just did not find the right member function for it. Can anyone point out the correct function I should use? Thanks. CODE: ----------- boost::try_mutex resourceX; boost::try_mutex::scoped_lock lockX(resourceX); ... if(lockX.locked() == false) // compilation error do sth. ----------- The compiler complains that locked() is not a member function of boost::try_mutex
http://tinyurl.com/kw96bn Also, use boost::mutex. boost::try_mutex is just a typedef for boost::mutex for backwards compatibility. In Christ, Steven Watanabe