Update testsuite strucuture to latest draft
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@120057 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8771430346
commit
adaa6266fe
@ -0,0 +1,12 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <mutex>
|
||||||
|
|
||||||
|
// class timed_mutex;
|
||||||
|
|
||||||
|
// timed_mutex& operator=(const timed_mutex&) = delete;
|
||||||
|
|
||||||
|
#include <mutex>
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
std::timed_mutex m0;
|
||||||
|
std::timed_mutex m1;
|
||||||
|
m1 = m0;
|
||||||
|
}
|
@ -0,0 +1,22 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <mutex>
|
||||||
|
|
||||||
|
// class timed_mutex;
|
||||||
|
|
||||||
|
// timed_mutex(const timed_mutex&) = delete;
|
||||||
|
|
||||||
|
#include <mutex>
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
std::timed_mutex m0;
|
||||||
|
std::timed_mutex m1(m0);
|
||||||
|
}
|
@ -0,0 +1,21 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <mutex>
|
||||||
|
|
||||||
|
// class timed_mutex;
|
||||||
|
|
||||||
|
// timed_mutex();
|
||||||
|
|
||||||
|
#include <mutex>
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
std::timed_mutex m;
|
||||||
|
}
|
@ -0,0 +1,48 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <mutex>
|
||||||
|
|
||||||
|
// class timed_mutex;
|
||||||
|
|
||||||
|
// void lock();
|
||||||
|
|
||||||
|
#include <mutex>
|
||||||
|
#include <thread>
|
||||||
|
#include <cstdlib>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
std::timed_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();
|
||||||
|
m.lock();
|
||||||
|
time_point t1 = Clock::now();
|
||||||
|
m.unlock();
|
||||||
|
ns d = t1 - t0 - ms(250);
|
||||||
|
assert(d < ns(2500000)); // within 2.5ms
|
||||||
|
}
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
m.lock();
|
||||||
|
std::thread t(f);
|
||||||
|
std::this_thread::sleep_for(ms(250));
|
||||||
|
m.unlock();
|
||||||
|
t.join();
|
||||||
|
}
|
@ -0,0 +1,50 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <mutex>
|
||||||
|
|
||||||
|
// class timed_mutex;
|
||||||
|
|
||||||
|
// bool try_lock();
|
||||||
|
|
||||||
|
#include <mutex>
|
||||||
|
#include <thread>
|
||||||
|
#include <cstdlib>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
std::timed_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();
|
||||||
|
assert(!m.try_lock());
|
||||||
|
assert(!m.try_lock());
|
||||||
|
assert(!m.try_lock());
|
||||||
|
while(!m.try_lock())
|
||||||
|
;
|
||||||
|
time_point t1 = Clock::now();
|
||||||
|
m.unlock();
|
||||||
|
ns d = t1 - t0 - ms(250);
|
||||||
|
assert(d < ns(50000000)); // within 50ms
|
||||||
|
}
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
m.lock();
|
||||||
|
std::thread t(f);
|
||||||
|
std::this_thread::sleep_for(ms(250));
|
||||||
|
m.unlock();
|
||||||
|
t.join();
|
||||||
|
}
|
@ -0,0 +1,65 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <mutex>
|
||||||
|
|
||||||
|
// class timed_mutex;
|
||||||
|
|
||||||
|
// template <class Rep, class Period>
|
||||||
|
// bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
|
||||||
|
|
||||||
|
#include <mutex>
|
||||||
|
#include <thread>
|
||||||
|
#include <cstdlib>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
std::timed_mutex m;
|
||||||
|
|
||||||
|
typedef std::chrono::steady_clock Clock;
|
||||||
|
typedef Clock::time_point time_point;
|
||||||
|
typedef Clock::duration duration;
|
||||||
|
typedef std::chrono::milliseconds ms;
|
||||||
|
typedef std::chrono::nanoseconds ns;
|
||||||
|
|
||||||
|
void f1()
|
||||||
|
{
|
||||||
|
time_point t0 = Clock::now();
|
||||||
|
assert(m.try_lock_for(ms(300)) == true);
|
||||||
|
time_point t1 = Clock::now();
|
||||||
|
m.unlock();
|
||||||
|
ns d = t1 - t0 - ms(250);
|
||||||
|
assert(d < ns(5000000)); // within 5ms
|
||||||
|
}
|
||||||
|
|
||||||
|
void f2()
|
||||||
|
{
|
||||||
|
time_point t0 = Clock::now();
|
||||||
|
assert(m.try_lock_for(ms(250)) == false);
|
||||||
|
time_point t1 = Clock::now();
|
||||||
|
ns d = t1 - t0 - ms(250);
|
||||||
|
assert(d < ns(5000000)); // within 5ms
|
||||||
|
}
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
{
|
||||||
|
m.lock();
|
||||||
|
std::thread t(f1);
|
||||||
|
std::this_thread::sleep_for(ms(250));
|
||||||
|
m.unlock();
|
||||||
|
t.join();
|
||||||
|
}
|
||||||
|
{
|
||||||
|
m.lock();
|
||||||
|
std::thread t(f2);
|
||||||
|
std::this_thread::sleep_for(ms(300));
|
||||||
|
m.unlock();
|
||||||
|
t.join();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,65 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <mutex>
|
||||||
|
|
||||||
|
// class timed_mutex;
|
||||||
|
|
||||||
|
// template <class Clock, class Duration>
|
||||||
|
// bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
|
||||||
|
|
||||||
|
#include <mutex>
|
||||||
|
#include <thread>
|
||||||
|
#include <cstdlib>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
std::timed_mutex m;
|
||||||
|
|
||||||
|
typedef std::chrono::steady_clock Clock;
|
||||||
|
typedef Clock::time_point time_point;
|
||||||
|
typedef Clock::duration duration;
|
||||||
|
typedef std::chrono::milliseconds ms;
|
||||||
|
typedef std::chrono::nanoseconds ns;
|
||||||
|
|
||||||
|
void f1()
|
||||||
|
{
|
||||||
|
time_point t0 = Clock::now();
|
||||||
|
assert(m.try_lock_until(Clock::now() + ms(300)) == true);
|
||||||
|
time_point t1 = Clock::now();
|
||||||
|
m.unlock();
|
||||||
|
ns d = t1 - t0 - ms(250);
|
||||||
|
assert(d < ns(5000000)); // within 5ms
|
||||||
|
}
|
||||||
|
|
||||||
|
void f2()
|
||||||
|
{
|
||||||
|
time_point t0 = Clock::now();
|
||||||
|
assert(m.try_lock_until(Clock::now() + ms(250)) == false);
|
||||||
|
time_point t1 = Clock::now();
|
||||||
|
ns d = t1 - t0 - ms(250);
|
||||||
|
assert(d < ns(5000000)); // within 5ms
|
||||||
|
}
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
{
|
||||||
|
m.lock();
|
||||||
|
std::thread t(f1);
|
||||||
|
std::this_thread::sleep_for(ms(250));
|
||||||
|
m.unlock();
|
||||||
|
t.join();
|
||||||
|
}
|
||||||
|
{
|
||||||
|
m.lock();
|
||||||
|
std::thread t(f2);
|
||||||
|
std::this_thread::sleep_for(ms(300));
|
||||||
|
m.unlock();
|
||||||
|
t.join();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <mutex>
|
||||||
|
|
||||||
|
// class recursive_timed_mutex;
|
||||||
|
|
||||||
|
// recursive_timed_mutex& operator=(const recursive_timed_mutex&) = delete;
|
||||||
|
|
||||||
|
#include <mutex>
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
std::recursive_timed_mutex m0;
|
||||||
|
std::recursive_timed_mutex m1;
|
||||||
|
m1 = m0;
|
||||||
|
}
|
@ -0,0 +1,22 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <mutex>
|
||||||
|
|
||||||
|
// class recursive_timed_mutex;
|
||||||
|
|
||||||
|
// recursive_timed_mutex(const recursive_timed_mutex&) = delete;
|
||||||
|
|
||||||
|
#include <mutex>
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
std::recursive_timed_mutex m0;
|
||||||
|
std::recursive_timed_mutex m1(m0);
|
||||||
|
}
|
@ -0,0 +1,21 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <mutex>
|
||||||
|
|
||||||
|
// class recursive_timed_mutex;
|
||||||
|
|
||||||
|
// recursive_timed_mutex();
|
||||||
|
|
||||||
|
#include <mutex>
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
std::recursive_timed_mutex m;
|
||||||
|
}
|
@ -0,0 +1,50 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <mutex>
|
||||||
|
|
||||||
|
// class recursive_timed_mutex;
|
||||||
|
|
||||||
|
// void lock();
|
||||||
|
|
||||||
|
#include <mutex>
|
||||||
|
#include <thread>
|
||||||
|
#include <cstdlib>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
std::recursive_timed_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();
|
||||||
|
m.lock();
|
||||||
|
time_point t1 = Clock::now();
|
||||||
|
m.lock();
|
||||||
|
m.unlock();
|
||||||
|
m.unlock();
|
||||||
|
ns d = t1 - t0 - ms(250);
|
||||||
|
assert(d < ns(2500000)); // within 2.5ms
|
||||||
|
}
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
m.lock();
|
||||||
|
std::thread t(f);
|
||||||
|
std::this_thread::sleep_for(ms(250));
|
||||||
|
m.unlock();
|
||||||
|
t.join();
|
||||||
|
}
|
@ -0,0 +1,52 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <mutex>
|
||||||
|
|
||||||
|
// class recursive_timed_mutex;
|
||||||
|
|
||||||
|
// bool try_lock();
|
||||||
|
|
||||||
|
#include <mutex>
|
||||||
|
#include <thread>
|
||||||
|
#include <cstdlib>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
std::recursive_timed_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();
|
||||||
|
assert(!m.try_lock());
|
||||||
|
assert(!m.try_lock());
|
||||||
|
assert(!m.try_lock());
|
||||||
|
while(!m.try_lock())
|
||||||
|
;
|
||||||
|
time_point t1 = Clock::now();
|
||||||
|
assert(m.try_lock());
|
||||||
|
m.unlock();
|
||||||
|
m.unlock();
|
||||||
|
ns d = t1 - t0 - ms(250);
|
||||||
|
assert(d < ns(50000000)); // within 50ms
|
||||||
|
}
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
m.lock();
|
||||||
|
std::thread t(f);
|
||||||
|
std::this_thread::sleep_for(ms(250));
|
||||||
|
m.unlock();
|
||||||
|
t.join();
|
||||||
|
}
|
@ -0,0 +1,67 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <mutex>
|
||||||
|
|
||||||
|
// class recursive_timed_mutex;
|
||||||
|
|
||||||
|
// template <class Rep, class Period>
|
||||||
|
// bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
|
||||||
|
|
||||||
|
#include <mutex>
|
||||||
|
#include <thread>
|
||||||
|
#include <cstdlib>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
std::recursive_timed_mutex m;
|
||||||
|
|
||||||
|
typedef std::chrono::steady_clock Clock;
|
||||||
|
typedef Clock::time_point time_point;
|
||||||
|
typedef Clock::duration duration;
|
||||||
|
typedef std::chrono::milliseconds ms;
|
||||||
|
typedef std::chrono::nanoseconds ns;
|
||||||
|
|
||||||
|
void f1()
|
||||||
|
{
|
||||||
|
time_point t0 = Clock::now();
|
||||||
|
assert(m.try_lock_for(ms(300)) == true);
|
||||||
|
time_point t1 = Clock::now();
|
||||||
|
assert(m.try_lock());
|
||||||
|
m.unlock();
|
||||||
|
m.unlock();
|
||||||
|
ns d = t1 - t0 - ms(250);
|
||||||
|
assert(d < ns(50000000)); // within 50ms
|
||||||
|
}
|
||||||
|
|
||||||
|
void f2()
|
||||||
|
{
|
||||||
|
time_point t0 = Clock::now();
|
||||||
|
assert(m.try_lock_for(ms(250)) == false);
|
||||||
|
time_point t1 = Clock::now();
|
||||||
|
ns d = t1 - t0 - ms(250);
|
||||||
|
assert(d < ns(50000000)); // within 50ms
|
||||||
|
}
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
{
|
||||||
|
m.lock();
|
||||||
|
std::thread t(f1);
|
||||||
|
std::this_thread::sleep_for(ms(250));
|
||||||
|
m.unlock();
|
||||||
|
t.join();
|
||||||
|
}
|
||||||
|
{
|
||||||
|
m.lock();
|
||||||
|
std::thread t(f2);
|
||||||
|
std::this_thread::sleep_for(ms(300));
|
||||||
|
m.unlock();
|
||||||
|
t.join();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,67 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <mutex>
|
||||||
|
|
||||||
|
// class recursive_timed_mutex;
|
||||||
|
|
||||||
|
// template <class Clock, class Duration>
|
||||||
|
// bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
|
||||||
|
|
||||||
|
#include <mutex>
|
||||||
|
#include <thread>
|
||||||
|
#include <cstdlib>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
std::recursive_timed_mutex m;
|
||||||
|
|
||||||
|
typedef std::chrono::steady_clock Clock;
|
||||||
|
typedef Clock::time_point time_point;
|
||||||
|
typedef Clock::duration duration;
|
||||||
|
typedef std::chrono::milliseconds ms;
|
||||||
|
typedef std::chrono::nanoseconds ns;
|
||||||
|
|
||||||
|
void f1()
|
||||||
|
{
|
||||||
|
time_point t0 = Clock::now();
|
||||||
|
assert(m.try_lock_until(Clock::now() + ms(300)) == true);
|
||||||
|
time_point t1 = Clock::now();
|
||||||
|
assert(m.try_lock());
|
||||||
|
m.unlock();
|
||||||
|
m.unlock();
|
||||||
|
ns d = t1 - t0 - ms(250);
|
||||||
|
assert(d < ns(5000000)); // within 5ms
|
||||||
|
}
|
||||||
|
|
||||||
|
void f2()
|
||||||
|
{
|
||||||
|
time_point t0 = Clock::now();
|
||||||
|
assert(m.try_lock_until(Clock::now() + ms(250)) == false);
|
||||||
|
time_point t1 = Clock::now();
|
||||||
|
ns d = t1 - t0 - ms(250);
|
||||||
|
assert(d < ns(5000000)); // within 5ms
|
||||||
|
}
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
{
|
||||||
|
m.lock();
|
||||||
|
std::thread t(f1);
|
||||||
|
std::this_thread::sleep_for(ms(250));
|
||||||
|
m.unlock();
|
||||||
|
t.join();
|
||||||
|
}
|
||||||
|
{
|
||||||
|
m.lock();
|
||||||
|
std::thread t(f2);
|
||||||
|
std::this_thread::sleep_for(ms(300));
|
||||||
|
m.unlock();
|
||||||
|
t.join();
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user