私はこのようなコードを持っています:
#include <iostream>
#include <tbb/tbb.h>
#include <Windows.h>
bool MyThread(int something)
{
std::cout << "This is a thread function\n" << std::endl;
for (int i = 0; i < 10000; i++)
{
something++;
Sleep(1);
}
return true;
}
int main ()
{
tbb::tbb_thread pMyThread = tbb::tbb_thread(MyThread, 3);
pMyThread.join();
return 0;
}
しかし、VS 2008 でコンパイルすると、次のように表示されます。
main() 関数の最初の文字列。どこが間違っていますか?