id summary reporter owner description type status milestone component version severity resolution keywords cc 5013 documentation: boost::thread: pthreas_exit causes terminate() Slava viboes "boost::thread before svn revision 49969 causes the terminate() to be called if the child thread exits with pthread_exit() on linux. See the proof test case (environment: Boost 1.36, gcc 4.3.2, openSUSE 11.1, x86_64 architecture.): {{{ #include void tf() { pthread_exit(NULL); } int main() { boost::thread t(tf); t.join(); return 0; } > g++ -g -O0 test2.cpp -lboost_thread && gdb a.outGNU gdb (GDB) 7.2 Copyright (C) 2010 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type ""show copying"" and ""show warranty"" for details. This GDB was configured as ""x86_64-unknown-linux-gnu"". For bug reporting instructions, please see: ... Reading symbols from /home/vsysolts/test/boost_thread/a.out...done. (gdb) r Starting program: /home/vsysolts/test/boost_thread/a.out [Thread debugging using libthread_db enabled] [New Thread 0x7ffff6cd5950 (LWP 14284)] Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0x7ffff6cd5950 (LWP 14284)] 0x00007ffff798a565 in __gnu_cxx::__verbose_terminate_handler() () from /usr/lib64/libstdc++.so.6 (gdb) bt #0 0x00007ffff798a565 in __gnu_cxx::__verbose_terminate_handler() () from /usr/lib64/libstdc++.so.6 #1 0x00007ffff7988a46 in ?? () from /usr/lib64/libstdc++.so.6 #2 0x00007ffff7988a73 in std::terminate() () from /usr/lib64/libstdc++.so.6 #3 0x00007ffff7bd898a in thread_proxy () from /usr/lib64/libboost_thread.so.1.36.0 #4 0x00007ffff6cdd070 in start_thread () from /lib64/libpthread.so.0 #5 0x00007ffff71ce11d in clone () from /lib64/libc.so.6 #6 0x0000000000000000 in ?? () }}} pthread_exit implementation uses the special forced_unwind exception to unwind the stack, which is (wrongly) caught in boost:thread code and used as a reason to call terminate(). The misbehaviour is commented out since svn rev 49969. Due to the fact the pthread_exit is quite legal possibility to end the single thread, the fact of incompatibility with former boost:thread implementation should be mentionen in the documentation of the boost releases up to veriosn 1.37 (presumably). I would add the mention about pthread_exit in the files doc/html/thread/thread_management.html, chapter ""Exceptions in thread functions""." Bugs closed Boost 1.50.0 thread Boost 1.36.0 Problem fixed doc native threads viboes