Boost logo

Boost-Commit :

From: igaztanaga_at_[hidden]
Date: 2007-08-21 15:18:32


Author: igaztanaga
Date: 2007-08-21 15:18:32 EDT (Tue, 21 Aug 2007)
New Revision: 38834
URL: http://svn.boost.org/trac/boost/changeset/38834

Log:
Erased temporarily until problems on Mac Os PowerPC are solved
Removed:
   trunk/libs/interprocess/test/barrier_test.cpp

Deleted: trunk/libs/interprocess/test/barrier_test.cpp
==============================================================================
--- trunk/libs/interprocess/test/barrier_test.cpp 2007-08-21 15:18:32 EDT (Tue, 21 Aug 2007)
+++ (empty file)
@@ -1,74 +0,0 @@
-// Copyright (C) 2001-2003
-// William E. Kempf
-//
-// Permission to use, copy, modify, distribute and sell this software
-// and its documentation for any purpose is hereby granted without fee,
-// provided that the above copyright notice appear in all copies and
-// that both that copyright notice and this permission notice appear
-// in supporting documentation. William E. Kempf makes no representations
-// about the suitability of this software for any purpose.
-// It is provided "as is" without express or implied warranty.
-//////////////////////////////////////////////////////////////////////////////
-//
-// (C) Copyright Ion Gaztanaga 2005-2007. 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/thread/thread.hpp>
-#include <boost/interprocess/sync/interprocess_barrier.hpp>
-#include <boost/interprocess/sync/interprocess_mutex.hpp>
-#include <boost/interprocess/sync/scoped_lock.hpp>
-#include <iostream>
-
-namespace {
-
-// Shared variables for generation barrier test
-const int N_THREADS=10;
-boost::interprocess::barrier gen_barrier(N_THREADS);
-boost::interprocess::interprocess_mutex interprocess_mutex;
-long global_parameter;
-
-void barrier_thread()
-{
- for (int i = 0; i < 5; ++i)
- {
- if (gen_barrier.wait())
- {
- boost::interprocess::scoped_lock
- <boost::interprocess::interprocess_mutex> lock(interprocess_mutex);
- global_parameter++;
- }
- }
-}
-
-} // namespace
-
-int main ()
-{
- try{
- boost::thread_group g;
- global_parameter = 0;
-
- for (int i = 0; i < N_THREADS; ++i)
- g.create_thread(&barrier_thread);
-
- g.join_all();
- }
- catch(std::exception &e){
- std::cout << "Exception cached: " << e.what() << std::endl;
- return 1;
- }
- catch(...){
- std::cout << "unkwnown exception catched" << std::endl;
- return 1;
- }
- return 0;
-}
-
-#include <boost/interprocess/detail/config_end.hpp>


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk