Files
interprocess/test/condition_test.cpp
2007-05-04 21:17:55 +00:00

26 lines
886 B
C++

//////////////////////////////////////////////////////////////////////////////
//
// (C) Copyright Ion Gaztañaga 2006. Distributed under the Boost
// Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
// See http://www.boost.org/libs/interprocess for documentation.
//
//////////////////////////////////////////////////////////////////////////////
#include <boost/interprocess/detail/config_begin.hpp>
#include <boost/thread/detail/config.hpp>
#include <boost/interprocess/sync/interprocess_condition.hpp>
#include <boost/interprocess/sync/interprocess_mutex.hpp>
#include "condition_test_template.hpp"
using namespace boost::interprocess;
int main ()
{
return test::do_test_condition<interprocess_condition, interprocess_mutex>() ?
0 : -1;
}
#include <boost/interprocess/detail/config_end.hpp>