Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Tried the following example compiled with g++ -std=gnu++0x t1.cpp and g++ -std=c++0x t1.cpp but both of these result in the example aborting.

$ ./a.out 
terminate called after throwing an instance of 'std::system_error'
  what():  
Aborted

Here is the sample:

#include <thread>
#include <iostream>

void doSomeWork( void )
{
    std::cout << "hello from thread..." << std::endl;
    return;
}

int main( int argc, char *argv[] )
{
    std::thread t( doSomeWork );
    t.join();
    return 0;
}

I'm trying this on Ubuntu 11.04:

$ g++ --version
g++ (Ubuntu/Linaro 4.5.2-8ubuntu4) 4.5.2

Anyone knows what I've missed?

share|improve this question
1  
Maybe the problem is that you didn't join the thread in main? – Armen Tsirunyan Jun 26 '11 at 18:00
t.join() was in my example at home, but I missed it when I created the question on StackOverflow. I've edited the sample above. – Stéphane Jun 26 '11 at 19:51
I thought it was going to be fine but I can't even get it to compile on g++ MinGW-w64! Seems I'm worse off than you. The following command proves that the declaration for std::thread doesn't get included: g++ -pthread -std=c++11 -E c:\temp\test.cpp>delme.txt – doug65536 Feb 11 at 17:11

3 Answers

up vote 29 down vote accepted

You have to join std::threads, just like you have to join pthreads.

int main( int argc, char *argv[] )
{
    std::thread t( doSomeWork );
    t.join();
    return 0;
}

UPDATE: This Debian bug report pointed me to the solution: add -pthread to your commandline. This is most probably a workaround until the std::thread code stabilizes and g++ pulls that library in when it should (or always, for C++).

share|improve this answer
1  
I've tried his example as well, and the problem still occurs – Ken Wayne VanderLinde Jun 26 '11 at 18:07
Huh, I could have sworn this worked when I tested it three months ago. I just tested my own correction on Arch Linux GCC 4.6 and I get the same error. That's a bit puzzling :( – rubenvb Jun 26 '11 at 18:18
Hmmm, that's strange. I suppose it could simply be a problem with GCC itself that hasn't been worked out yet. It looks like such a simple thing should be working – Ken Wayne VanderLinde Jun 26 '11 at 18:24
1  
Thanks, the trick is indeed to add -pthread to g++. – Stéphane Jun 26 '11 at 19:56
2  
I've added -pthread but getting same error. I use GCC 4.6 on Ubuntu 11.10 – soroush Feb 8 '12 at 17:40
show 3 more comments

Please use the pthread library during the compilation: g++ -lpthread.

share|improve this answer

You need to link to run time library

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.