Merhaba std::thread
G ++ ile kullanmaya çalışıyorum . İşte test kodum
#include <thread>
#include <iostream>
int main(int, char **){
std::thread tt([](){ std::cout<<"Thread!"<<std::endl; });
tt.join();
}
Derliyor, ama çalıştırmaya çalıştığımda sonuç:
terminate called after throwing an instance of 'std::system_error'
what(): Operation not permitted
Aborted
Derleyici sürümüm:
$ 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.
Test kodumun nesi var?
GÜNCELLEME: Kodumu derlemek ve çalıştırmak için aşağıdaki komut satırını kullanıyorum.
$ g++ -std=c++0x test.cpp
$ ./a.out
ve denedim
$ g++ -std=c++0x -lpthread test.cpp
$ ./a.out
hala aynı.
glibc
birçok pthread işlevi için hiçbir şey yapmaz.