Hallo, ich versuche std::thread
mit G ++ zu verwenden. Hier ist mein Testcode
#include <thread>
#include <iostream>
int main(int, char **){
std::thread tt([](){ std::cout<<"Thread!"<<std::endl; });
tt.join();
}
Es wird kompiliert, aber wenn ich versuche, es auszuführen, ist das Ergebnis:
terminate called after throwing an instance of 'std::system_error'
what(): Operation not permitted
Aborted
Meine Compilerversion:
$ 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.
Was ist mit meinem Testcode falsch?
UPDATE: Ich verwende die folgende Befehlszeile, um meinen Code zu kompilieren und auszuführen.
$ g++ -std=c++0x test.cpp
$ ./a.out
und ich habe es versucht
$ g++ -std=c++0x -lpthread test.cpp
$ ./a.out
immer noch das gleiche.
-lpthread
muss das der Quelldatei folgen .
glibc
Hat für viele pthread-Funktionen nichts zu tun.