Searched refs:try_join_until (Results 1 – 8 of 8) sorted by relevance
68 …resource_deadlock_would_occur_th->try_join_until(boost::chrono::steady_clock::now()+boost::chrono:… in resource_deadlock_would_occur_tester()92 t0.try_join_until(boost::chrono::steady_clock::now()+boost::chrono::milliseconds(250)); in main()97 …BOOST_TEST(!t0.try_join_until(boost::chrono::steady_clock::now()+boost::chrono::milliseconds(50))); in main()118 t0.try_join_until(boost::chrono::steady_clock::now()+boost::chrono::milliseconds(50)); in main()132 t0.try_join_until(boost::chrono::steady_clock::now()+boost::chrono::milliseconds(50)); in main()144 t0.try_join_until(boost::chrono::steady_clock::now()+boost::chrono::milliseconds(250)); in main()
218 bool try_join_until(const chrono::time_point<Clock, Duration>& t);401 [section:try_join_until Member function `try_join_until()`]404 bool try_join_until(const chrono::time_point<Clock, Duration>& abs_time);408 [[Effects:] [Equivalent to return `t_.try_join_until(abs_time)`.]]
185 [def __try_join_until [link thread.thread_management.thread.try_join_until `try_join_until`]]
474 bool try_join_until(const chrono::time_point<Clock, Duration>& t); // EXTENSION865 [section:try_join_until Member function `try_join_until()` EXTENSION]868 bool try_join_until(const chrono::time_point<Clock, Duration>& abs_time);880 [[Postconditions:] [If `*this` refers to a thread of execution on entry, and `try_join_until` retur…881 …*this` no longer refers to any thread of execution. If this call to `try_join_until` returns `fals…900 [[Notes:] [`try_join_until()` is one of the predefined __interruption_points__.]]
255 * [@http://svn.boost.org/trac/boost/ticket/11688 #11688] thread::try_join_until: Avoid busy wait if…512 * [@http://svn.boost.org/trac/boost/ticket/8323 #8323] boost::thread::try_join_for/try_join_until m…
240 bool try_join_until(const chrono::time_point<Clock, Duration>& abs_time) in try_join_until() function in boost::scoped_thread242 return t_.try_join_until(abs_time); in try_join_until()
473 bool try_join_until(const chrono::time_point<detail::internal_chrono_clock, Duration>& t) in try_join_until() function in boost::thread479 bool try_join_until(const chrono::time_point<Clock, Duration>& t) in try_join_until() function in boost::thread484 while ( ! try_join_until(detail::internal_chrono_clock::now() + d) ) in try_join_until()496 return try_join_until(chrono::steady_clock::now() + rel_time); in try_join_for()
850 bool succeeded = t3.try_join_until(Helper::steadyNow() + Helper::waitDur); in testTryJoinUntilSteady()861 bool succeeded = t3.try_join_until(Helper::systemNow() + Helper::waitDur); in testTryJoinUntilSystem()872 bool succeeded = t3.try_join_until(Helper::customNow() + Helper::waitDur); in testTryJoinUntilCustom()