2
0
mirror of https://github.com/boostorg/thread.git synced 2026-02-15 13:32:10 +00:00

Thread: minor refactorings

[SVN r81842]
This commit is contained in:
Vicente J. Botet Escriba
2012-12-10 22:02:16 +00:00
parent 2b8930a5bf
commit c8edd6c795
9 changed files with 169 additions and 132 deletions

View File

@@ -330,7 +330,7 @@ namespace boost
bool thread::joinable() const BOOST_NOEXCEPT
{
return (get_thread_info)() != 0;
return (get_thread_info)() ? true : false;
}
bool thread::join_noexcept()
{