]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/thread/test/test_12949.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / thread / test / test_12949.cpp
1 // Copyright (C) 2017 Vicente Botet
2 //
3 // Distributed under the Boost Software License, Version 1.0. (See accompanying
4 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6 #define BOOST_THREAD_VERSION 4
7 //#define BOOST_THREAD_HAS_CONDATTR_SET_CLOCK_MONOTONIC
8
9 //#include <boost/thread/thread.hpp>
10 #include <boost/thread/condition_variable.hpp>
11
12 void f()
13 {
14 boost::this_thread::sleep_for(boost::chrono::milliseconds(10)); // **
15 }
16 int main()
17 {
18
19 return 0;
20 }
21