2010-05-11 19:42:16 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2010-05-11 21:36:01 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
2010-05-11 19:42:16 +00:00
|
|
|
//
|
2010-11-16 22:09:02 +00:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-05-11 19:42:16 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// <mutex>
|
|
|
|
|
|
|
|
// template <class Mutex> class lock_guard;
|
|
|
|
|
|
|
|
// explicit lock_guard(mutex_type& m);
|
|
|
|
|
|
|
|
#include <mutex>
|
|
|
|
#include <thread>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
std::mutex m;
|
|
|
|
|
|
|
|
typedef std::chrono::system_clock Clock;
|
|
|
|
typedef Clock::time_point time_point;
|
|
|
|
typedef Clock::duration duration;
|
|
|
|
typedef std::chrono::milliseconds ms;
|
|
|
|
typedef std::chrono::nanoseconds ns;
|
|
|
|
|
|
|
|
void f()
|
|
|
|
{
|
|
|
|
time_point t0 = Clock::now();
|
|
|
|
time_point t1;
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> lg(m);
|
|
|
|
t1 = Clock::now();
|
|
|
|
}
|
|
|
|
ns d = t1 - t0 - ms(250);
|
2013-02-08 17:41:19 +00:00
|
|
|
assert(d < ms(200)); // within 200ms
|
2010-05-11 19:42:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
m.lock();
|
|
|
|
std::thread t(f);
|
|
|
|
std::this_thread::sleep_for(ms(250));
|
|
|
|
m.unlock();
|
|
|
|
t.join();
|
|
|
|
}
|