Searched refs:strict_scoped_thread (Results 1 – 4 of 4) sorted by relevance
19 class strict_scoped_thread;28 …ed_thread class defined in C++ Concurrency in Action is closer to strict_scoped_thread class that …34 …all std::terminate() on the destructor if the thread is joinable, strict_scoped_thread<> or scoped…36 The difference between strict_scoped_thread and scoped_thread is that the strict_scoped_thread hide…38 boost::strict_scoped_thread<> t1((boost::thread(f)));99 [section:strict_scoped_thread Class `strict_scoped_thread`]104 class strict_scoped_thread109 strict_scoped_thread(strict_scoped_thread const&) = delete;110 strict_scoped_thread& operator=(strict_scoped_thread const&) = delete;112 explicit strict_scoped_thread(Thread&& t) noexcept;[all …]
38 class strict_scoped_thread class44 BOOST_THREAD_NO_COPYABLE( strict_scoped_thread) /// non copyable51 explicit strict_scoped_thread(BOOST_THREAD_FWD_REF(F) f, BOOST_THREAD_FWD_REF(Args)... args) : in strict_scoped_thread() function in boost::strict_scoped_thread55 explicit strict_scoped_thread(BOOST_THREAD_FWD_REF(F) f,59 strict_scoped_thread(BOOST_THREAD_FWD_REF(F) f, BOOST_THREAD_FWD_REF(A1) a1) :62 …strict_scoped_thread(BOOST_THREAD_FWD_REF(F) f, BOOST_THREAD_FWD_REF(A1) a1, BOOST_THREAD_FWD_REF(…65 …strict_scoped_thread(BOOST_THREAD_FWD_REF(F) f, BOOST_THREAD_FWD_REF(A1) a1, BOOST_THREAD_FWD_REF(…76 explicit strict_scoped_thread(BOOST_THREAD_RV_REF(Thread) t) BOOST_NOEXCEPT : in strict_scoped_thread() function in boost::strict_scoped_thread86 ~strict_scoped_thread() in ~strict_scoped_thread()
51 using strict_scoped_thread = boost::strict_scoped_thread<boost::join_if_joinable, std::thread>; typedef58 strict_scoped_thread t( (std::thread(func(some_local_state)))); in main()65 strict_scoped_thread g( (boost::move(t)) ); in main()72 strict_scoped_thread g( (std::move(t)) ); in main()
46 boost::strict_scoped_thread<> t( (boost::thread(func(some_local_state)))); in main()53 boost::strict_scoped_thread<> g( (boost::move(t)) ); in main()