I am having some trouble using the pantheios logging library with boost::threads. It seems that if I use any pantheios logging before creating the thread, I will get a segfault.
For example, the following would work:
thread_ = new boost::thread(&foo);
pantheios::log(pantheios::debug, "Hello world");
But if the order of the statements are switched, a stack trace reveals that I crash on start_thread in boost.
pantheios::log(pantheios::debug, "Hello world");
thread_ = new boost::thread(&foo);
// SEGFAULT!
Any ideas?
EDIT: More context
int main()
{
pantheios::log(...);
MyClass myClass(/* some arguments, which are all literals */);
// Do some more work
return 0;
}
// MyClass constructor
MyClass::MyClass(/* args */)
: member1_(arg1)
, member2_(arg2)
{
thread_ = new boost::thread(&MyClass::workerLoop, this);
}
// Destructor
MyClass::~MyClass()
{
thread_->join();
delete thread_;
}
This will segfault at start_thread. Once again if I swap the two lines in main it will work without any problems.
foo, a function? Does it do any logging? Does it use any globals? – Jonathan Wakely Jun 19 '12 at 22:40foois a member function of a class, actually. It's bound to the class'thisusingboost::bind.foouses pantheios as well, and also it utilizes network sockets. pantheios is supposed to be thread-friendly though... – Andrew Lee Jun 20 '12 at 13:25&foo, so it can't be a member function or a function object returned byboost::bind. Isfoodeclared on the stack? Does it go out of scope? Please show some more code. – Jonathan Wakely Jun 20 '12 at 13:29thread_ = new boost::thread(&MyClass::workerLoop, this);which is insideMyClassconstructor. See my edit to the question for context. – Andrew Lee Jun 20 '12 at 13:46MyClassdestructor join the thread beforemyClassgoes out of scope? – Jonathan Wakely Jun 20 '12 at 13:56