diff options
Diffstat (limited to '3rdParty/Boost/src/boost/thread/barrier.hpp')
| -rw-r--r-- | 3rdParty/Boost/src/boost/thread/barrier.hpp | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/3rdParty/Boost/src/boost/thread/barrier.hpp b/3rdParty/Boost/src/boost/thread/barrier.hpp index 4ca30cb..4fd8988 100644 --- a/3rdParty/Boost/src/boost/thread/barrier.hpp +++ b/3rdParty/Boost/src/boost/thread/barrier.hpp @@ -2,7 +2,7 @@  // David Moore, William E. Kempf  // Copyright (C) 2007-8 Anthony Williams  // -//  Distributed under the Boost Software License, Version 1.0. (See accompanying  +//  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)  #ifndef BOOST_BARRIER_JDM030602_HPP @@ -28,14 +28,14 @@ namespace boost              : m_threshold(count), m_count(count), m_generation(0)          {              if (count == 0) -                boost::throw_exception(std::invalid_argument("count cannot be zero.")); +                boost::throw_exception(thread_exception(system::errc::invalid_argument, "barrier constructor: count cannot be zero."));          } -     +          bool wait()          {              boost::mutex::scoped_lock lock(m_mutex);              unsigned int gen = m_generation; -         +              if (--m_count == 0)              {                  m_generation++; | 
 Swift
 Swift