/usr/include/boost/thread
NameSizeModeActions
concurrent_queues/-0755rm
csbl/-0755rm
detail/-0755rm
executors/-0755rm
experimental/-0755rm
futures/-0755rm
pthread/-0755rm
v2/-0755rm
win32/-0755rm
barrier.hpp74210644editdlrm
caller_context.hpp15260644editdlrm
completion_latch.hpp65790644editdlrm
condition.hpp4900644editdlrm
condition_variable.hpp6340644editdlrm
cv_status.hpp5310644editdlrm
exceptional_ptr.hpp10980644editdlrm
exceptions.hpp62860644editdlrm
executor.hpp4760644editdlrm
externally_locked.hpp107920644editdlrm
externally_locked_stream.hpp47840644editdlrm
future.hpp2037920644editdlrm
interruption.hpp5960644editdlrm
is_locked_by_this_thread.hpp10620644editdlrm
latch.hpp49670644editdlrm
lockable_adapter.hpp60430644editdlrm
lockable_concepts.hpp41140644editdlrm
lockable_traits.hpp78530644editdlrm
locks.hpp5720644editdlrm
lock_algorithms.hpp132010644editdlrm
lock_concepts.hpp47920644editdlrm
lock_factories.hpp23170644editdlrm
lock_guard.hpp22900644editdlrm
lock_options.hpp7010644editdlrm
lock_traits.hpp12340644editdlrm
lock_types.hpp344180644editdlrm
mutex.hpp11660644editdlrm
null_mutex.hpp63460644editdlrm
once.hpp13240644editdlrm
ostream_buffer.hpp9250644editdlrm
poly_lockable.hpp21000644editdlrm
poly_lockable_adapter.hpp21240644editdlrm
poly_shared_lockable.hpp58070644editdlrm
poly_shared_lockable_adapter.hpp47920644editdlrm
recursive_mutex.hpp15350644editdlrm
reverse_lock.hpp13160644editdlrm
scoped_thread.hpp85470644editdlrm
shared_lock_guard.hpp11920644editdlrm
shared_mutex.hpp14000644editdlrm
strict_lock.hpp62460644editdlrm
synchronized_value.hpp311100644editdlrm
sync_bounded_queue.hpp5950644editdlrm
sync_queue.hpp5710644editdlrm
testable_mutex.hpp39250644editdlrm
thread.hpp3850644editdlrm
thread_functors.hpp13660644editdlrm
thread_guard.hpp10690644editdlrm
thread_only.hpp8030644editdlrm
thread_pool.hpp5310644editdlrm
thread_time.hpp15900644editdlrm
tss.hpp26030644editdlrm
user_scheduler.hpp52220644editdlrm
with_lock_guard.hpp60520644editdlrm
xtime.hpp23900644editdlrm
Edit: /usr/include/boost/thread/lock_algorithms.hpp (13201B)
// 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) // (C) Copyright 2007 Anthony Williams // (C) Copyright 2011-2012 Vicente J. Botet Escriba #ifndef BOOST_THREAD_LOCK_ALGORITHMS_HPP #define BOOST_THREAD_LOCK_ALGORITHMS_HPP #include #include #include #include #include #include namespace boost { namespace detail { template unsigned try_lock_internal(MutexType1& m1, MutexType2& m2) { boost::unique_lock l1(m1, boost::try_to_lock); if (!l1) { return 1; } if (!m2.try_lock()) { return 2; } l1.release(); return 0; } template unsigned try_lock_internal(MutexType1& m1, MutexType2& m2, MutexType3& m3) { boost::unique_lock l1(m1, boost::try_to_lock); if (!l1) { return 1; } if (unsigned const failed_lock=try_lock_internal(m2,m3)) { return failed_lock + 1; } l1.release(); return 0; } template unsigned try_lock_internal(MutexType1& m1, MutexType2& m2, MutexType3& m3, MutexType4& m4) { boost::unique_lock l1(m1, boost::try_to_lock); if (!l1) { return 1; } if (unsigned const failed_lock=try_lock_internal(m2,m3,m4)) { return failed_lock + 1; } l1.release(); return 0; } template unsigned try_lock_internal(MutexType1& m1, MutexType2& m2, MutexType3& m3, MutexType4& m4, MutexType5& m5) { boost::unique_lock l1(m1, boost::try_to_lock); if (!l1) { return 1; } if (unsigned const failed_lock=try_lock_internal(m2,m3,m4,m5)) { return failed_lock + 1; } l1.release(); return 0; } template unsigned lock_helper(MutexType1& m1, MutexType2& m2) { boost::unique_lock l1(m1); if (!m2.try_lock()) { return 1; } l1.release(); return 0; } template unsigned lock_helper(MutexType1& m1, MutexType2& m2, MutexType3& m3) { boost::unique_lock l1(m1); if (unsigned const failed_lock=try_lock_internal(m2,m3)) { return failed_lock; } l1.release(); return 0; } template unsigned lock_helper(MutexType1& m1, MutexType2& m2, MutexType3& m3, MutexType4& m4) { boost::unique_lock l1(m1); if (unsigned const failed_lock=try_lock_internal(m2,m3,m4)) { return failed_lock; } l1.release(); return 0; } template unsigned lock_helper(MutexType1& m1, MutexType2& m2, MutexType3& m3, MutexType4& m4, MutexType5& m5) { boost::unique_lock l1(m1); if (unsigned const failed_lock=try_lock_internal(m2,m3,m4,m5)) { return failed_lock; } l1.release(); return 0; } } namespace detail { template struct is_mutex_type_wrapper { }; template void lock_impl(MutexType1& m1, MutexType2& m2, is_mutex_type_wrapper ) { unsigned const lock_count = 2; unsigned lock_first = 0; for (;;) { switch (lock_first) { case 0: lock_first = detail::lock_helper(m1, m2); if (!lock_first) return; break; case 1: lock_first = detail::lock_helper(m2, m1); if (!lock_first) return; lock_first = (lock_first + 1) % lock_count; break; } } } template void lock_impl(Iterator begin, Iterator end, is_mutex_type_wrapper ); } template void lock(MutexType1& m1, MutexType2& m2) { detail::lock_impl(m1, m2, detail::is_mutex_type_wrapper::value>()); } template void lock(const MutexType1& m1, MutexType2& m2) { detail::lock_impl(m1, m2, detail::is_mutex_type_wrapper::value>()); } template void lock(MutexType1& m1, const MutexType2& m2) { detail::lock_impl(m1, m2, detail::is_mutex_type_wrapper::value>()); } template void lock(const MutexType1& m1, const MutexType2& m2) { detail::lock_impl(m1, m2, detail::is_mutex_type_wrapper::value>()); } template void lock(MutexType1& m1, MutexType2& m2, MutexType3& m3) { unsigned const lock_count = 3; unsigned lock_first = 0; for (;;) { switch (lock_first) { case 0: lock_first = detail::lock_helper(m1, m2, m3); if (!lock_first) return; break; case 1: lock_first = detail::lock_helper(m2, m3, m1); if (!lock_first) return; lock_first = (lock_first + 1) % lock_count; break; case 2: lock_first = detail::lock_helper(m3, m1, m2); if (!lock_first) return; lock_first = (lock_first + 2) % lock_count; break; } } } template void lock(MutexType1& m1, MutexType2& m2, MutexType3& m3, MutexType4& m4) { unsigned const lock_count = 4; unsigned lock_first = 0; for (;;) { switch (lock_first) { case 0: lock_first = detail::lock_helper(m1, m2, m3, m4); if (!lock_first) return; break; case 1: lock_first = detail::lock_helper(m2, m3, m4, m1); if (!lock_first) return; lock_first = (lock_first + 1) % lock_count; break; case 2: lock_first = detail::lock_helper(m3, m4, m1, m2); if (!lock_first) return; lock_first = (lock_first + 2) % lock_count; break; case 3: lock_first = detail::lock_helper(m4, m1, m2, m3); if (!lock_first) return; lock_first = (lock_first + 3) % lock_count; break; } } } template void lock(MutexType1& m1, MutexType2& m2, MutexType3& m3, MutexType4& m4, MutexType5& m5) { unsigned const lock_count = 5; unsigned lock_first = 0; for (;;) { switch (lock_first) { case 0: lock_first = detail::lock_helper(m1, m2, m3, m4, m5); if (!lock_first) return; break; case 1: lock_first = detail::lock_helper(m2, m3, m4, m5, m1); if (!lock_first) return; lock_first = (lock_first + 1) % lock_count; break; case 2: lock_first = detail::lock_helper(m3, m4, m5, m1, m2); if (!lock_first) return; lock_first = (lock_first + 2) % lock_count; break; case 3: lock_first = detail::lock_helper(m4, m5, m1, m2, m3); if (!lock_first) return; lock_first = (lock_first + 3) % lock_count; break; case 4: lock_first = detail::lock_helper(m5, m1, m2, m3, m4); if (!lock_first) return; lock_first = (lock_first + 4) % lock_count; break; } } } namespace detail { template ::value> struct try_lock_impl_return { typedef int type; }; template struct try_lock_impl_return { typedef Iterator type; }; template int try_lock_impl(MutexType1& m1, MutexType2& m2, is_mutex_type_wrapper ) { return ((int) detail::try_lock_internal(m1, m2)) - 1; } template Iterator try_lock_impl(Iterator begin, Iterator end, is_mutex_type_wrapper ); } template typename detail::try_lock_impl_return::type try_lock(MutexType1& m1, MutexType2& m2) { return detail::try_lock_impl(m1, m2, detail::is_mutex_type_wrapper::value>()); } template typename detail::try_lock_impl_return::type try_lock(const MutexType1& m1, MutexType2& m2) { return detail::try_lock_impl(m1, m2, detail::is_mutex_type_wrapper::value>()); } template typename detail::try_lock_impl_return::type try_lock(MutexType1& m1, const MutexType2& m2) { return detail::try_lock_impl(m1, m2, detail::is_mutex_type_wrapper::value>()); } template typename detail::try_lock_impl_return::type try_lock(const MutexType1& m1, const MutexType2& m2) { return detail::try_lock_impl(m1, m2, detail::is_mutex_type_wrapper::value>()); } template int try_lock(MutexType1& m1, MutexType2& m2, MutexType3& m3) { return ((int) detail::try_lock_internal(m1, m2, m3)) - 1; } template int try_lock(MutexType1& m1, MutexType2& m2, MutexType3& m3, MutexType4& m4) { return ((int) detail::try_lock_internal(m1, m2, m3, m4)) - 1; } template int try_lock(MutexType1& m1, MutexType2& m2, MutexType3& m3, MutexType4& m4, MutexType5& m5) { return ((int) detail::try_lock_internal(m1, m2, m3, m4, m5)) - 1; } namespace detail { template struct range_lock_guard { Iterator begin; Iterator end; range_lock_guard(Iterator begin_, Iterator end_) : begin(begin_), end(end_) { boost::lock(begin, end); } void release() { begin = end; } ~range_lock_guard() { for (; begin != end; ++begin) { begin->unlock(); } } }; template Iterator try_lock_impl(Iterator begin, Iterator end, is_mutex_type_wrapper ) { if (begin == end) { return end; } typedef typename std::iterator_traits::value_type lock_type; unique_lock guard(*begin, try_to_lock); if (!guard.owns_lock()) { return begin; } Iterator const failed = boost::try_lock(++begin, end); if (failed == end) { guard.release(); } return failed; } } namespace detail { template void lock_impl(Iterator begin, Iterator end, is_mutex_type_wrapper ) { typedef typename std::iterator_traits::value_type lock_type; if (begin == end) { return; } bool start_with_begin = true; Iterator second = begin; ++second; Iterator next = second; for (;;) { unique_lock begin_lock(*begin, defer_lock); if (start_with_begin) { begin_lock.lock(); Iterator const failed_lock = boost::try_lock(next, end); if (failed_lock == end) { begin_lock.release(); return; } start_with_begin = false; next = failed_lock; } else { detail::range_lock_guard guard(next, end); if (begin_lock.try_lock()) { Iterator const failed_lock = boost::try_lock(second, next); if (failed_lock == next) { begin_lock.release(); guard.release(); return; } start_with_begin = false; next = failed_lock; } else { start_with_begin = true; next = second; } } } } } } #include #endif