mirror of
https://github.com/boostorg/thread.git
synced 2026-01-19 04:42:13 +00:00
Fix test_366_4.cpp
This commit is contained in:
@@ -12,7 +12,7 @@ static void do_first_half()
|
||||
std::cout << "Doing first half of the work\n";
|
||||
|
||||
boost::this_thread::sleep_for(
|
||||
boost::chrono::seconds( 10 ) );
|
||||
boost::chrono::hours( 1 ) );
|
||||
|
||||
std::cout << "First half of the work complete\n";
|
||||
}
|
||||
@@ -22,7 +22,7 @@ static void do_second_half()
|
||||
std::cout << "Doing second half of the work\n";
|
||||
|
||||
boost::this_thread::sleep_for(
|
||||
boost::chrono::seconds( 10 ) );
|
||||
boost::chrono::hours( 1 ) );
|
||||
|
||||
std::cout << "Second half of the work complete\n";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user