สวัสดีฉันกำลังพยายามใช้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.
เกิดอะไรขึ้นกับรหัสทดสอบของฉัน
UPDATE: ฉันใช้บรรทัดคำสั่งต่อไปนี้เพื่อคอมไพล์และรันโค้ดของฉัน
$ g++ -std=c++0x test.cpp
$ ./a.out
และฉันพยายาม
$ g++ -std=c++0x -lpthread test.cpp
$ ./a.out
ยังเหมือนเดิม.
glibc
ไม่มีส่วนที่ไม่ต้องทำอะไรเลยสำหรับฟังก์ชัน pthread จำนวนมาก