Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.0 KiB
C++
Raw Permalink Normal View History

2010-05-11 19:42:16 +00:00
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
2010-05-11 19:42:16 +00:00
//
//===----------------------------------------------------------------------===//
//
// UNSUPPORTED: libcpp-has-no-threads
2010-05-11 19:42:16 +00:00
// <thread>
// template <class Clock, class Duration>
// void sleep_until(const chrono::time_point<Clock, Duration>& abs_time);
#include <thread>
#include <cstdlib>
#include <cassert>
#include "test_macros.h"
2019-02-04 20:31:13 +00:00
int main(int, char**)
2010-05-11 19:42:16 +00:00
{
typedef std::chrono::system_clock Clock;
typedef Clock::time_point time_point;
std::chrono::milliseconds ms(500);
time_point t0 = Clock::now();
std::this_thread::sleep_until(t0 + ms);
time_point t1 = Clock::now();
// NOTE: Operating systems are (by default) best effort and therefore we may
// have slept longer, perhaps much longer than we requested.
assert(t1 - t0 >= ms);
2019-02-04 20:31:13 +00:00
return 0;
2010-05-11 19:42:16 +00:00
}