changeset 2832:78673a00457e

* standalone/wxwin/configtooldoc.cpp: Limit backtrace length to 64 in case GDB fails to detect the thread entry point. [ Bugzilla 1000699 ]
author jld
date Fri, 27 Feb 2009 08:34:00 +0000
parents 957d0458e043
children 00b2082267f1
files host/tools/configtool/ChangeLog host/tools/configtool/standalone/wxwin/configtooldoc.cpp
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/host/tools/configtool/ChangeLog
+++ b/host/tools/configtool/ChangeLog
@@ -1,3 +1,8 @@
+2009-02-27  John Dallaway  <john@dallaway.org.uk>
+
+	* standalone/wxwin/configtooldoc.cpp: Limit backtrace length to 64 in
+	case GDB fails to detect the thread entry point. [ Bugzilla 1000699 ]
+
 2009-02-23  John Dallaway  <john@dallaway.org.uk>
 
 	* standalone/wxwin/settingsdlg.cpp: Rationalise serial baud options.
--- a/host/tools/configtool/standalone/wxwin/configtooldoc.cpp
+++ b/host/tools/configtool/standalone/wxwin/configtooldoc.cpp
@@ -2318,7 +2318,7 @@ void ecConfigToolDoc::RunTests()
             		"cont\n"
             		"set cyg_test_is_simulator=0\n"
             		"cont\n"
-            		"bt");
+            		"bt 64");
             dlg.m_strPrompt = _("(gdb) ");
             dlg.m_strInferior = dlg.m_strPrefix + _("-gdb -nw -q %e");
             dlg.m_strCaption=_("New Platform");