]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/thread/test/test_8508.cpp
f53d1487d509b114ffa99fa56eb2640021ac84de
[ceph.git] / ceph / src / boost / libs / thread / test / test_8508.cpp
1 // Copyright (C) 2013 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 2
7
8 #include <boost/thread/thread.hpp>
9
10 void thread_main()
11 {
12 }
13
14 int main(void)
15 {
16 boost::thread t(thread_main);
17 t.join();
18 return 0;
19 }
20