From 1e7abc562ef8fb532e621653e8bb5072e39efef4 Mon Sep 17 00:00:00 2001 From: "Zane U. Ji" Date: Fri, 25 Oct 2013 23:06:30 +0800 Subject: [PATCH] Display message about a known crash --- src/threadreaper.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/threadreaper.cpp b/src/threadreaper.cpp index 563b921..1b91b15 100644 --- a/src/threadreaper.cpp +++ b/src/threadreaper.cpp @@ -71,6 +71,9 @@ void ThreadReaper::clear() // versions of wxWidgets. A easy way to fix this is to rethrow // abi::__forced_unwind& exceptions and avoid calling pthread_exit // in such a condition. +#if defined(__WXGTK__) && !wxCHECK_VERSION(2,9,5) + wxPrintf ( _T ( "Expecting crash..." ) ); +#endif (**itr).Kill(); (**itr).Wait(); }