/
makani
/
strongdc
Обзор
Документация
Войти
/
makani
/
strongdc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
boost/libs/thread/test/test_5891.cpp
35 строк
679 B
Makani
updated Boost 1.75
14 янв 2021, 09:51
14 янв 2021, 09:51
155b074
Код
Авторство
О чём код?
// 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 #include <iostream> #include <boost/thread/thread_only.hpp> using namespace std; using namespace boost; struct X { void operator()() { boost::this_thread::sleep(posix_time::seconds(2)); } }; int main() { X run; boost::thread myThread(run); boost::this_thread::yield(); if(myThread.timed_join(posix_time::seconds(5))) { cout << "thats ok"; return 0; } else { cout << "too late"; return 1; } }