/usr/include/boost/signals2
NameSizeModeActions
detail/-0755rm
connection.hpp120050644editdlrm
deconstruct.hpp189820644editdlrm
deconstruct_ptr.hpp23850644editdlrm
dummy_mutex.hpp8320644editdlrm
expired_slot.hpp7310644editdlrm
last_value.hpp21610644editdlrm
mutex.hpp10600644editdlrm
optional_last_value.hpp17200644editdlrm
postconstructible.hpp16330644editdlrm
predestructible.hpp13410644editdlrm
preprocessed_signal.hpp24300644editdlrm
preprocessed_slot.hpp28070644editdlrm
shared_connection_block.hpp18580644editdlrm
signal.hpp19130644editdlrm
signal_base.hpp8150644editdlrm
signal_type.hpp41620644editdlrm
slot.hpp9760644editdlrm
slot_base.hpp33650644editdlrm
trackable.hpp19130644editdlrm
variadic_signal.hpp14570644editdlrm
variadic_slot.hpp7720644editdlrm
Edit: /usr/include/boost/signals2/mutex.hpp (1060B)
// // boost/signals2/mutex.hpp - header-only mutex // // Copyright (c) 2002, 2003 Peter Dimov and Multi Media Ltd. // Copyright (c) 2008 Frank Mori Hess // // 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) // // boost::signals2::mutex is a modification of // boost::detail::lightweight_mutex to follow the newer Lockable // concept of Boost.Thread. // #ifndef BOOST_SIGNALS2_MUTEX_HPP #define BOOST_SIGNALS2_MUTEX_HPP // MS compatible compilers support #pragma once #if defined(_MSC_VER) # pragma once #endif #include #if !defined(BOOST_HAS_THREADS) # include #elif defined(BOOST_HAS_PTHREADS) # include #elif defined(BOOST_HAS_WINTHREADS) # include #else // Use #define BOOST_DISABLE_THREADS to avoid the error # error Unrecognized threading platform #endif #endif // #ifndef BOOST_SIGNALS2_MUTEX_HPP