13657c8bda
[SVN r27931]
29 lines
630 B
C++
29 lines
630 B
C++
//
|
|
// lw_mutex_test.cpp
|
|
//
|
|
// Copyright 2005 Peter Dimov
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See
|
|
// accompanying file LICENSE_1_0.txt or copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
|
|
#include <boost/detail/lightweight_mutex.hpp>
|
|
|
|
// Sanity check only
|
|
|
|
boost::detail::lightweight_mutex m1;
|
|
|
|
int main()
|
|
{
|
|
boost::detail::lightweight_mutex::scoped_lock lock1( m1 );
|
|
|
|
boost::detail::lightweight_mutex m2;
|
|
boost::detail::lightweight_mutex m3;
|
|
|
|
boost::detail::lightweight_mutex::scoped_lock lock2( m2 );
|
|
boost::detail::lightweight_mutex::scoped_lock lock3( m3 );
|
|
|
|
return 0;
|
|
}
|