Hai, saya mencoba menggunakan std::thread
dengan G ++. Ini kode tes saya
#include <thread>
#include <iostream>
int main(int, char **){
std::thread tt([](){ std::cout<<"Thread!"<<std::endl; });
tt.join();
}
Ini dikompilasi, tetapi ketika saya mencoba menjalankannya, hasilnya adalah:
terminate called after throwing an instance of 'std::system_error'
what(): Operation not permitted
Aborted
Versi kompiler saya:
$ 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.
Apa yang salah dengan kode tes saya?
UPDATE: Saya menggunakan baris perintah berikut untuk mengkompilasi dan menjalankan kode saya.
$ g++ -std=c++0x test.cpp
$ ./a.out
dan saya mencoba
$ g++ -std=c++0x -lpthread test.cpp
$ ./a.out
masih sama.
glibc
memiliki rintisan do-nothing untuk banyak fungsi pthread.