こんにちは私はstd::thread
G ++で使用しようとしています。これが私のテストコードです
#include <thread>
#include <iostream>
int main(int, char **){
std::thread tt([](){ std::cout<<"Thread!"<<std::endl; });
tt.join();
}
コンパイルされますが、実行しようとすると次のようになります。
terminate called after throwing an instance of 'std::system_error'
what(): Operation not permitted
Aborted
私のコンパイラバージョン:
$ g++ --version
g++ (Ubuntu/Linaro 4.6.1-9ubuntu3) 4.6.1
Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
テストコードの何が問題になっていますか?
更新:次のコマンドラインを使用して、コードをコンパイルして実行します。
$ g++ -std=c++0x test.cpp
$ ./a.out
そして私は試しました
$ g++ -std=c++0x -lpthread test.cpp
$ ./a.out
まだ同じ。
glibc
多くのpthread関数に対して何もしないスタブがあります。