locale_multithread_test initial commit

[SVN r83028]
This commit is contained in:
Beman Dawes 2013-02-19 21:06:41 +00:00
parent 842f91ada2
commit 68efe31588
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,32 @@
#include <iostream>
#include <boost/thread.hpp>
#include <boost/filesystem/path.hpp>
using std::cout;
using std::endl;
namespace
{
void f1()
{
cout << "f1()" << endl;
}
void f2()
{
cout << "f2()" << endl;
}
}
int main()
{
boost::thread t1(f1);
boost::thread t2(f2);
cout << "t1.join()" << endl;
t1.join();
cout << "t2.join()" << endl;
t2.join();
cout << "all done" << endl;
}

View File

@ -110,6 +110,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "path_timings", "path_timing
{FFD738F7-96F0-445C-81EA-551665EF53D1} = {FFD738F7-96F0-445C-81EA-551665EF53D1}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "locale_multihread_test", "locale_multihread_test\locale_multihread_test.vcxproj", "{D47F31DB-5BED-4A49-B79E-2E3CC63950ED}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32
@ -232,6 +234,10 @@ Global
{3AB1E2A1-9616-4E91-83F4-1D7A33A586DE}.Debug|Win32.Build.0 = Debug|Win32
{3AB1E2A1-9616-4E91-83F4-1D7A33A586DE}.Release|Win32.ActiveCfg = Release|Win32
{3AB1E2A1-9616-4E91-83F4-1D7A33A586DE}.Release|Win32.Build.0 = Release|Win32
{D47F31DB-5BED-4A49-B79E-2E3CC63950ED}.Debug|Win32.ActiveCfg = Debug|Win32
{D47F31DB-5BED-4A49-B79E-2E3CC63950ED}.Debug|Win32.Build.0 = Debug|Win32
{D47F31DB-5BED-4A49-B79E-2E3CC63950ED}.Release|Win32.ActiveCfg = Release|Win32
{D47F31DB-5BED-4A49-B79E-2E3CC63950ED}.Release|Win32.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE