Salut, j'essaye 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 lorsque j'essaye de l'exécuter, 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.
glibc
a des stubs à ne rien faire pour de nombreuses fonctions pthread.