2 // spinlock_pool_test.cpp
4 // Copyright 2008 Peter Dimov
6 // Distributed under the Boost Software License, Version 1.0.
7 // See accompanying file LICENSE_1_0.txt or copy at
8 // http://www.boost.org/LICENSE_1_0.txt
11 #include <boost/smart_ptr/detail/spinlock_pool.hpp>
20 boost::detail::spinlock_pool<0>::scoped_lock lock( &x );
25 boost::detail::spinlock_pool<1>::scoped_lock lock( &x );
26 boost::detail::spinlock_pool<2>::scoped_lock lock2( &x );