• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //////////////////////////////////////////////////////////////////////////////
2 //
3 // (C) Copyright Ion Gaztanaga 2010-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 #include "robust_mutex_test.hpp"
11 #include <boost/interprocess/detail/robust_emulation.hpp>
12 #include <boost/interprocess/sync/spin/recursive_mutex.hpp>
13 
main(int argc,char * argv[])14 int main(int argc, char *argv[])
15 {
16    using namespace boost::interprocess;
17 
18    return test::robust_mutex_test
19       < ipcdetail::robust_spin_mutex<ipcdetail::spin_recursive_mutex> >(argc, argv);
20 }
21