Home
last modified time | relevance | path

Searched refs:strict_scoped_thread (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/doc/
Dscoped_thread.qbk19 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_thread
109 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 …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/include/boost/thread/
Dscoped_thread.hpp38 class strict_scoped_thread class
44 BOOST_THREAD_NO_COPYABLE( strict_scoped_thread) /// non copyable
51 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_thread
55 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) :
62strict_scoped_thread(BOOST_THREAD_FWD_REF(F) f, BOOST_THREAD_FWD_REF(A1) a1, BOOST_THREAD_FWD_REF(…
65strict_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_thread
86 ~strict_scoped_thread() in ~strict_scoped_thread()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/example/
Dstd_scoped_thread.cpp51 using strict_scoped_thread = boost::strict_scoped_thread<boost::join_if_joinable, std::thread>; typedef
58 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()
Dscoped_thread.cpp46 boost::strict_scoped_thread<> t( (boost::thread(func(some_local_state)))); in main()
53 boost::strict_scoped_thread<> g( (boost::move(t)) ); in main()