Home
last modified time | relevance | path

Searched refs:try_join_until (Results 1 – 8 of 8) sorted by relevance

/third_party/boost/libs/thread/test/threads/thread/members/
Dtry_join_until_pass.cpp68 …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()
/third_party/boost/libs/thread/doc/
Dscoped_thread.qbk218 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)`.]]
Dthread.qbk185 [def __try_join_until [link thread.thread_management.thread.try_join_until `try_join_until`]]
Dthread_ref.qbk474 bool try_join_until(const chrono::time_point<Clock, Duration>& t); // EXTENSION
865 [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__.]]
Dchanges.qbk255 * [@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…
/third_party/boost/boost/thread/
Dscoped_thread.hpp240 bool try_join_until(const chrono::time_point<Clock, Duration>& abs_time) in try_join_until() function in boost::scoped_thread
242 return t_.try_join_until(abs_time); in try_join_until()
/third_party/boost/boost/thread/detail/
Dthread.hpp473 bool try_join_until(const chrono::time_point<detail::internal_chrono_clock, Duration>& t) in try_join_until() function in boost::thread
479 bool try_join_until(const chrono::time_point<Clock, Duration>& t) in try_join_until() function in boost::thread
484 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()
/third_party/boost/libs/thread/test/
Dtest_time_jumps.cpp850 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()