Properly raise SIGSEGV/SIGABRT after catching it

This commit is contained in:
Christophe Dumez 2010-03-20 21:43:01 +00:00
parent 5aa348a574
commit 6f7ae4770a

View file

@ -141,8 +141,7 @@ void sigsegvHandler(int) {
std::cerr << "\n\n*************************************************************\n"; std::cerr << "\n\n*************************************************************\n";
std::cerr << "Catching SIGSEGV, please report a bug at http://bug.qbittorrent.org\nand provide the following backtrace:\n"; std::cerr << "Catching SIGSEGV, please report a bug at http://bug.qbittorrent.org\nand provide the following backtrace:\n";
print_stacktrace(); print_stacktrace();
std::raise(SIGINT); std::raise(SIGSEGV);
std::abort();
} }
void sigabrtHandler(int) { void sigabrtHandler(int) {
signal(SIGABRT, 0); signal(SIGABRT, 0);
@ -150,8 +149,7 @@ void sigabrtHandler(int) {
std::cerr << "\n\n*************************************************************\n"; std::cerr << "\n\n*************************************************************\n";
std::cerr << "Catching SIGABRT, please report a bug at http://bug.qbittorrent.org\nand provide the following backtrace:\n"; std::cerr << "Catching SIGABRT, please report a bug at http://bug.qbittorrent.org\nand provide the following backtrace:\n";
print_stacktrace(); print_stacktrace();
std::raise(SIGINT); std::raise(SIGABRT);
std::abort();
} }
#endif #endif