1//////////////////////////////////////////////////////////////////////////////
2//
3// (C) Copyright Ion Gaztanaga 2006-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_condition.hpp>
13#include <boost/interprocess/sync/interprocess_mutex.hpp>
14#include "condition_test_template.hpp"
15
16using namespace boost::interprocess;
17
18int main ()
19{
20 if(!test::do_test_condition<interprocess_condition, interprocess_mutex>())
21 return 1;
22
23 return 0;
24}
25

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