summaryrefslogtreecommitdiffstats
path: root/c/src/lib
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-05 21:33:20 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-05 21:33:20 +0000
commit538583f5b1d0a1652d00dd8affbed9cacc2788ca (patch)
tree97130af4283eb5706ce7ccd06260fb660ffc6eca /c/src/lib
parent2008-09-05 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-538583f5b1d0a1652d00dd8affbed9cacc2788ca.tar.bz2
2008-09-05 Joel Sherrill <joel.sherrill@oarcorp.com>
* psim-gdb-bottom: Also break on C_exception_handler so we can see what caused the exception. This indicates an error in the program.
Diffstat (limited to 'c/src/lib')
-rw-r--r--c/src/lib/libbsp/powerpc/psim/tools/ChangeLog5
-rwxr-xr-xc/src/lib/libbsp/powerpc/psim/tools/psim-gdb-bottom1
2 files changed, 6 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/powerpc/psim/tools/ChangeLog b/c/src/lib/libbsp/powerpc/psim/tools/ChangeLog
index 20c0cf928a..1b27ac1ac7 100644
--- a/c/src/lib/libbsp/powerpc/psim/tools/ChangeLog
+++ b/c/src/lib/libbsp/powerpc/psim/tools/ChangeLog
@@ -1,5 +1,10 @@
2008-09-05 Joel Sherrill <joel.sherrill@oarcorp.com>
+ * psim-gdb-bottom: Also break on C_exception_handler so we can see what
+ caused the exception. This indicates an error in the program.
+
+2008-09-05 Joel Sherrill <joel.sherrill@oarcorp.com>
+
* psim-shared, psim-top.in, runtest-bottom, runtest-top.in: Now running
mptests.
diff --git a/c/src/lib/libbsp/powerpc/psim/tools/psim-gdb-bottom b/c/src/lib/libbsp/powerpc/psim/tools/psim-gdb-bottom
index 672c02dc28..ce85622fa1 100755
--- a/c/src/lib/libbsp/powerpc/psim/tools/psim-gdb-bottom
+++ b/c/src/lib/libbsp/powerpc/psim/tools/psim-gdb-bottom
@@ -9,6 +9,7 @@ gen_gdb_script()
echo "b _Internal_error_Occurred"
echo "b rtems_fatal_error_occurred"
echo "b __assert"
+ echo "b C_exception_handler"
echo "printf \"Use run to start the RTEMS application\\n\""
}