Salut, je suis en train d'utiliser std::thread
avec G++. Voici mon code de test
#include <thread>
#include <iostream>
int main(int, char **){
std::thread tt([](){ std::cout<<"Thread!"<<std::endl; });
tt.join();
}
Il compile, mais quand j'essaie de le lancer, le résultat est:
terminate called after throwing an instance of 'std::system_error'
what(): Operation not permitted
Aborted
Ma version de compilateur:
$ 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.
Quel est le problème avec mon code de test?
Mise à JOUR: j'utilise la ligne de commande suivante pour compiler et exécuter mon code.
$ g++ -std=c++0x test.cpp
$ ./a.out
et j'ai essayé
$ g++ -std=c++0x -lpthread test.cpp
$ ./a.out
toujours le même.
Mise à JOUR: la compilation suivante de commande fonctionne.
$ g++ -std=c++0x test.cpp -lpthread
$ ./a.out
Thread!