안녕하세요 저는 std::thread
G ++ 로 사용하려고합니다 . 내 테스트 코드는 다음과 같습니다.
#include <thread>
#include <iostream>
int main(int, char **){
std::thread tt([](){ std::cout<<"Thread!"<<std::endl; });
tt.join();
}
컴파일되지만 실행하려고하면 결과는 다음과 같습니다.
terminate called after throwing an instance of 'std::system_error'
what(): Operation not permitted
Aborted
내 컴파일러 버전 :
$ 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.
내 테스트 코드에 어떤 문제가 있습니까?
업데이트 : 다음 명령 줄을 사용하여 코드를 컴파일하고 실행합니다.
$ g++ -std=c++0x test.cpp
$ ./a.out
그리고 나는 시도했다
$ g++ -std=c++0x -lpthread test.cpp
$ ./a.out
여전히 동일합니다.
glibc
많은 pthread 함수에 대해 아무것도하지 않는 스텁이 있습니다.