在哪个线程中称为终止处理程序:
在noexcept
函数中抛出异常?
当用户致电std::terminate
()?
启动或销毁thread
?
是否在标准中定义,我是否可以访问thread_local
个对象?
答案 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 上测试)