コード例 #1
0
ファイル: Thread.cpp プロジェクト: host1812/scx_plugin_public
Thread::~Thread()
{
    try
    {
        join();
        empty_tsd();
    }
    catch (...)
    {
    }
}
コード例 #2
0
ファイル: Thread.cpp プロジェクト: host1812/scx_plugin_public
Thread::~Thread()
{
    try
    {
        join();
        empty_tsd();
    }
    catch (...)
    {
        // Do not allow the destructor to throw an exception
    }
}
コード例 #3
0
ファイル: ThreadUnix.cpp プロジェクト: ncultra/Pegasus-2.5
Thread::~Thread()
{
    try
    {
        join();
        pthread_attr_destroy(&_handle.thatt);

        empty_tsd();
    }
    catch (...)
    {
        // Do not allow the destructor to throw an exception
    }
}