Ciao, sto cercando di utilizzare std::thread
con G ++. Ecco il mio codice di prova
#include <thread>
#include <iostream>
int main(int, char **){
std::thread tt([](){ std::cout<<"Thread!"<<std::endl; });
tt.join();
}
Si compila, ma quando provo a eseguirlo il risultato è:
terminate called after throwing an instance of 'std::system_error'
what(): Operation not permitted
Aborted
La mia versione del compilatore:
$ 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.
Cosa c'è di sbagliato nel mio codice di prova?
AGGIORNAMENTO: utilizzo la seguente riga di comando per compilare ed eseguire il mio codice.
$ g++ -std=c++0x test.cpp
$ ./a.out
e ho provato
$ g++ -std=c++0x -lpthread test.cpp
$ ./a.out
ancora lo stesso.
glibc
ha do-nothing stub per molte funzioni pthread.