From c98745c081e3328a8b1d91ea8011d4158af8e16f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20K=C3=BCmmel?= Date: Mon, 5 Apr 2010 14:44:41 +0000 Subject: [PATCH] try to make a gui message when lyx crashes, don't crash again on windows (use exit()). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34056 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/LyX.cpp | 33 ++++++++++++++++++++++++--------- 1 file changed, 24 insertions(+), 9 deletions(-) diff --git a/src/LyX.cpp b/src/LyX.cpp index 7f78e3e030..c24d87c92c 100644 --- a/src/LyX.cpp +++ b/src/LyX.cpp @@ -611,21 +611,23 @@ static void error_handler(int err_sig) // This shouldn't matter here, however, as we've already invoked // emergencyCleanup. + docstring msg; switch (err_sig) { #ifdef SIGHUP case SIGHUP: - lyxerr << "\nlyx: SIGHUP signal caught\nBye." << endl; + msg = _("SIGHUP signal caught!\nBye."); break; #endif case SIGFPE: - lyxerr << "\nlyx: SIGFPE signal caught\nBye." << endl; + msg = _("SIGFPE signal caught!\nBye."); break; case SIGSEGV: - lyxerr << "\nlyx: SIGSEGV signal caught\n" - "Sorry, you have found a bug in LyX. " + msg = _("SIGSEGV signal caught!\n" + "Sorry, you have found a bug in LyX, " + "hope you have not lost any data.\n" "Please read the bug-reporting instructions " - "in Help->Introduction and send us a bug report, " - "if necessary. Thanks !\nBye." << endl; + "in 'Help->Introduction' and send us a bug report, " + "if necessary. Thanks !\nBye."); break; case SIGINT: case SIGTERM: @@ -633,6 +635,12 @@ static void error_handler(int err_sig) break; } + if (!msg.empty()) { + lyxerr << "\nlyx: " << msg << endl; + // try to make a GUI message + Alert::error(_("LyX crashed!"), msg); + } + // Deinstall the signal handlers #ifdef SIGHUP signal(SIGHUP, SIG_DFL); @@ -644,11 +652,18 @@ static void error_handler(int err_sig) #ifdef SIGHUP if (err_sig == SIGSEGV || - (err_sig != SIGHUP && !getEnv("LYXDEBUG").empty())) + (err_sig != SIGHUP && !getEnv("LYXDEBUG").empty())) { +#else + if (err_sig == SIGSEGV || !getEnv("LYXDEBUG").empty()) { +#endif +#ifdef _MSC_VER + // with abort() it crashes again. + exit(err_sig); #else - if (err_sig == SIGSEGV || !getEnv("LYXDEBUG").empty()) -#endif abort(); +#endif + } + exit(0); }