1//////////////////////////////////////////////////////////////////////////////
2//
3// (C) Copyright Ion Gaztanaga 2004-2012. Distributed under the Boost
4// Software License, Version 1.0. (See accompanying file
5// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6//
7// See http://www.boost.org/libs/interprocess for documentation.
8//
9//////////////////////////////////////////////////////////////////////////////
10
11#include <boost/interprocess/detail/workaround.hpp>
12#include <boost/interprocess/sync/interprocess_mutex.hpp>
13#include "mutex_test_template.hpp"
14
15int main ()
16{
17 using namespace boost::interprocess;
18
19 test::test_all_lock<interprocess_mutex>();
20 test::test_all_mutex<interprocess_mutex>();
21 return 0;
22}
23

source code of boost/libs/interprocess/test/mutex_test.cpp