I have a fairly simple C++ application with a couple of threads in it - the main thread, and a worker thread. The worker thread waits for packets sent over a network, and on receiving a disconnection, calls exit( 0 ).
This causes the destructor for the class responsible for the thread to run. This destructor would usually be run from the main thread, and causes the worker thread (if running) to stop, and then calls join to wait for it to stop. Here's the code for the destructor:
if( m_thread.get_id() == boost::this_thread::get_id() )
{
return;
}
if ( m_thread.joinable() )
{
m_runThread = false;
m_thread.join();
}
My problem is, that the line
if( m_thread.get_id() == boost::this_thread::get_id() )
is returning false, even though I can tell from debugging that this code is definitely being run on the thread referenced by m_thread.
Having looked into this a bit more, boost::this_thread::get_id() is returning an id of 0 at this point. However, the visual studio debugger and win32 API function GetCurrentThreadId are both still able to correctly identify the thread id.
Can anyone provide an explanation for this? Is boost::this_thread not supported properly during application shutdown, perhaps because it's been destructed already at this point?