]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/interprocess/test/robust_recursive_emulation_test.cpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / interprocess / test / robust_recursive_emulation_test.cpp
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
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 }