summaryrefslogtreecommitdiff
path: root/libs/thread/example/this_executor.cpp
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2015-04-08 03:09:47 +0000
committer <>2015-05-05 14:37:32 +0000
commitf2541bb90af059680aa7036f315f052175999355 (patch)
treea5b214744b256f07e1dc2bd7273035a7808c659f /libs/thread/example/this_executor.cpp
parented232fdd34968697a68783b3195b1da4226915b5 (diff)
downloadboost-tarball-master.tar.gz
Imported from /home/lorry/working-area/delta_boost-tarball/boost_1_58_0.tar.bz2.HEADboost_1_58_0master
Diffstat (limited to 'libs/thread/example/this_executor.cpp')
-rw-r--r--libs/thread/example/this_executor.cpp86
1 files changed, 86 insertions, 0 deletions
diff --git a/libs/thread/example/this_executor.cpp b/libs/thread/example/this_executor.cpp
new file mode 100644
index 000000000..feeebf854
--- /dev/null
+++ b/libs/thread/example/this_executor.cpp
@@ -0,0 +1,86 @@
+// Copyright (C) 2014 Vicente Botet
+//
+// 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)
+
+#include <boost/config.hpp>
+#if ! defined BOOST_NO_CXX11_DECLTYPE
+#define BOOST_RESULT_OF_USE_DECLTYPE
+#endif
+
+#define BOOST_THREAD_VERSION 4
+#define BOOST_THREAD_PROVIDES_EXECUTORS
+#define BOOST_THREAD_USES_LOG_THREAD_ID
+
+#include <boost/thread/caller_context.hpp>
+#include <boost/thread/executors/basic_thread_pool.hpp>
+#include <boost/thread/executors/generic_executor_ref.hpp>
+#include <boost/smart_ptr/shared_ptr.hpp>
+#include <boost/smart_ptr/make_shared.hpp>
+#include <string>
+#include <iostream>
+
+#include <boost/thread/caller_context.hpp>
+
+struct current_executor_state_type {
+ boost::shared_ptr<boost::generic_executor_ref> current_executor_ptr;
+
+ template <class Executor>
+ void set_current_executor(Executor& ex)
+ {
+ current_executor_ptr = boost::make_shared<boost::generic_executor_ref>(ex);
+ }
+ boost::generic_executor_ref current_executor()
+ {
+ if (current_executor_ptr)
+ return *current_executor_ptr;
+ else
+ throw "";
+ }
+};
+
+thread_local current_executor_state_type current_executor_state;
+
+boost::generic_executor_ref current_executor()
+{
+ return current_executor_state.current_executor();
+}
+
+void p2()
+{
+ std::cout << BOOST_CONTEXTOF << std::endl;
+ boost::this_thread::sleep_for(boost::chrono::milliseconds(200));
+ std::cout << BOOST_CONTEXTOF << std::endl;
+}
+
+
+void p1()
+{
+ std::cout << BOOST_CONTEXTOF << std::endl;
+ boost::this_thread::sleep_for(boost::chrono::milliseconds(200));
+ current_executor().submit(&p2);
+ boost::this_thread::sleep_for(boost::chrono::milliseconds(400));
+ std::cout << BOOST_CONTEXTOF << std::endl;
+}
+
+int main()
+{
+ std::cout << BOOST_CONTEXTOF << std::endl;
+
+ boost::basic_thread_pool tp(4,
+ // at_thread_entry
+ [](boost::basic_thread_pool& pool)
+ {
+ current_executor_state.set_current_executor(pool);
+ }
+ );
+
+ tp.submit(&p1);
+
+ boost::this_thread::sleep_for(boost::chrono::seconds(5));
+
+ std::cout << BOOST_CONTEXTOF << std::endl;
+
+ return 1;
+
+}