Xin chào, tôi đang cố gắng sử dụng std::thread
với G ++. Đây là mã thử nghiệm của tôi
#include <thread>
#include <iostream>
int main(int, char **){
std::thread tt([](){ std::cout<<"Thread!"<<std::endl; });
tt.join();
}
Nó biên dịch, nhưng khi tôi cố gắng chạy nó, kết quả là:
terminate called after throwing an instance of 'std::system_error'
what(): Operation not permitted
Aborted
Phiên bản trình biên dịch của tôi:
$ 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.
Mã thử nghiệm của tôi có gì sai?
CẬP NHẬT: Tôi sử dụng dòng lệnh sau để biên dịch và chạy mã của mình.
$ g++ -std=c++0x test.cpp
$ ./a.out
và tôi đã thử
$ g++ -std=c++0x -lpthread test.cpp
$ ./a.out
vẫn giống nhau.
glibc
không có gì sơ khai cho nhiều hàm pthread.