在哪个线程中调用终止处理程序?

时间:2017-05-31 16:07:29

标签: c++ terminate terminate-handler

在哪个线程中称为终止处理程序:

  1. noexcept函数中抛出异常?

  2. 当用户致电std::terminate()?

  3. 启动或销毁thread

  4. 是否在标准中定义,我是否可以访问thread_local个对象?

1 个答案:

答案 0 :(得分:2)

这个答案总结了评论中给出的答案以及现在删除的答案:

  • 标准中未指定( DeiDei ,我已在N4618中查看过)

  • 尽管如此,由于技术原因,处理程序不可能在另一个线程中调用那个调用std::terminate的人( Galik Hans顺便

  • 已在在线编译器( Rinat Veliakhmedov )上验证,在线程中调用终止处理程序,导致终止被调用。

您可以使用已删除答案中的代码自行测试:

#include <string>
#include <exception>
#include <iostream>
#include <thread>
#include <mutex>

std::mutex mutex;
const auto& id = std::this_thread::get_id;
const auto print = [](std::string t){
    std::lock_guard<std::mutex> lock(mutex);
    std::cout << id() << " " << t << std::endl;
};

void my_terminate_handler(){
    print("terminate");
    std::abort();
}

void throwNoThrow() noexcept { throw std::exception(); }
void terminator()            { std::terminate();       }

int main() {
    std::set_terminate(my_terminate_handler);
    print("main");    
#ifdef  CASE1
    auto x1 = std::thread(throwNoThrow);
#elif CASE2
    auto x1 = std::thread(terminator);
#elif CASE3    
    auto x1 = std::thread(throwNoThrow);
#endif
    x1.join();
}

结论它是未指定的,但似乎总是在线程中调用处理程序,导致std::terminate被调用。 (在 gcc-5.4,gcc-7.1,clang-3.8与pthreads 上测试)