This topic has not yet been rated - Rate this topic

unique_lock::try_lock_until Method

Visual Studio 2012

Attempts to obtain ownership of the associated mutex without blocking.

template<class Clock, class Duration>
   bool try_lock_until(const chrono::time_point<Clock, Duration>& Abs_time);
bool try_lock_until(const xtime *Abs_time);
Abs_time

A point in time that specifies the threshold after which the method no longer attempts to obtain ownership of the mutex.

true if the method successfully obtains ownership of the mutex; otherwise, false.

If the stored mutex pointer is null, the method throws a system_error that has an error code of operation_not_permitted.

If the calling thread already owns the mutex, the method throws a system_error that has an error code of resource_deadlock_would_occur.

Header: mutex

Namespace: std

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.