Hola, estoy tratando de usar std::thread
con G ++. Aquí está mi código de prueba
#include <thread>
#include <iostream>
int main(int, char **){
std::thread tt([](){ std::cout<<"Thread!"<<std::endl; });
tt.join();
}
Se compila, pero cuando intento ejecutarlo, el resultado es:
terminate called after throwing an instance of 'std::system_error'
what(): Operation not permitted
Aborted
Mi versión del compilador:
$ 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.
¿Qué pasa con mi código de prueba?
ACTUALIZACIÓN: uso la siguiente línea de comando para compilar y ejecutar mi código.
$ g++ -std=c++0x test.cpp
$ ./a.out
y lo intenté
$ g++ -std=c++0x -lpthread test.cpp
$ ./a.out
Siempre lo mismo.
glibc
tiene códigos auxiliares que no hacen nada para muchas funciones pthread.