/usr/include/boost/thread/futures
NameSizeModeActions
future_error.hpp24300644editdlrm
future_error_code.hpp16190644editdlrm
future_status.hpp7510644editdlrm
is_future_type.hpp5230644editdlrm
launch.hpp7550644editdlrm
wait_for_all.hpp19360644editdlrm
wait_for_any.hpp41290644editdlrm
Edit: /usr/include/boost/thread/futures/launch.hpp (755B)
// (C) Copyright 2008-10 Anthony Williams // (C) Copyright 2011-2015 Vicente J. Botet Escriba // // 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_THREAD_FUTURES_LAUNCH_HPP #define BOOST_THREAD_FUTURES_LAUNCH_HPP #include #include namespace boost { //enum class launch BOOST_SCOPED_ENUM_DECLARE_BEGIN(launch) { none = 0, async = 1, deferred = 2, #ifdef BOOST_THREAD_PROVIDES_EXECUTORS executor = 4, #endif inherit = 8, sync = 16, any = async | deferred } BOOST_SCOPED_ENUM_DECLARE_END(launch) } #endif // header