Is it GCC 4.7.0 or is it me? What do I do wrong?
This throws an std::system_error
"operation not permitted" exception:
struct DumbFib {
size_t operator()(size_t n) { return fib(n); }
static size_t fib(size_t n) {
return n<2 ? 1 : fib(n-2)+fib(n-1);
}
};
void sample() {
DumbFib dumbfib;
thread th{ dumbfib, 35 }; // <- system_error!
th.join();
};
while this works:
void work(size_t loop) {
for(int l = loop; l>0; --l) {
for(int i = 1000*1000; i>0; --i)
;
cerr << l << "...";
}
cerr << endl;
}
int main() {
//sample();
thread t { work, 100 }; // <- fine
t.join();
}
The difference is, of course:
operator()
)Do I use the functor wrong, somewhere? I can not see where, do you? Is it a hint that the gdb
has this in its stack:
#7 ... in std::thread::_M_start_thread (..., __b=warning: RTTI symbol not found\
for class 'std::_Sp_counted_ptr_inplace<std::thread::_Impl<std::\
_Bind_simple<DumbFib()(int)> >, ..., (__gnu_cxx::_Lock_policy)2>
Notes: I also tried
DumbFib
first, giving it a member-variable n_=35
, same result.thread th{ DumbFib, 35 };
or thread th{ DumbFib{}, 35 };
When compiling your code with g++
, use the -pthread
option.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With