
14 Nov
2007
14 Nov
'07
5:45 a.m.
On Wed, 14 Nov 2007 03:22:29 +0000, Preston A. Elder wrote:
So, is it possible to get this fixed? :)
Last email for today (I'm going to bed :P) if (!thread_ptr || *thread_ptr != boost::thread()) return false; The above code does not work anymore. At least, my app stopped working because of the above code. I had to change it to: if (!thread_ptr || thread_ptr->get_id() != boost::this_thread::get_id()) return false; But a lot of code will have been written for the former ;) My tests are on the pthreads implementation. Preston.