नमस्ते मैं 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 फ़ंक्शंस के लिए कुछ भी नहीं है।