2013-05-29 84 views

回答

1

您正在使用非常舊文檔。 看看的recent version

#include <boost/thread/mutex.hpp> 

class mutex: 
    boost::noncopyable 
{ 
public: 
    mutex(); 
    ~mutex(); 

    void lock(); 
    bool try_lock(); 
    void unlock(); 

    typedef platform-specific-type native_handle_type; 
    native_handle_type native_handle(); 

    typedef unique_lock<mutex> scoped_lock; 
    typedef unspecified-type scoped_try_lock; 
}; 

又見Using and building the library部分。

+0

謝謝,我看到他們將它包含在新版本中(1.53) – eshalev

+0

@eshalev不在1.53中,它已經存在了相當長的時間。請注意,1.34是6歲! –