// Copyright (C) 2010 Vicente Botet // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #define BOOST_THREAD_VERSION 2 #define BOOST_THREAD_USES_LOG #include #include #include void thread() { BOOST_THREAD_LOG << "" << BOOST_THREAD_END_LOG; } boost::thread example(thread); int main() { BOOST_THREAD_LOG << "" << BOOST_THREAD_END_LOG; return 0; }