Mercurial > ecos-v3_0-branch
changeset 2832:461863da7f80
* 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:35:48 +0000 |
| parents | 72041d295c0b |
| children | d89a70a454d8 |
| 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");
