aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.mi/basics.c
diff options
context:
space:
mode:
authorVladimir Prus <vladimir@codesourcery.com>2008-02-01 16:24:47 +0000
committerVladimir Prus <vladimir@codesourcery.com>2008-02-01 16:24:47 +0000
commit98deb0daaefbe4fd9a2664a636aa71fb8aa678dd (patch)
tree048aa91c316f6f45b4eca253e52556f82ba36646 /gdb/testsuite/gdb.mi/basics.c
parentce0451adace70feabf93904e7a574fea21154073 (diff)
downloadgdb-98deb0daaefbe4fd9a2664a636aa71fb8aa678dd.zip
gdb-98deb0daaefbe4fd9a2664a636aa71fb8aa678dd.tar.gz
gdb-98deb0daaefbe4fd9a2664a636aa71fb8aa678dd.tar.bz2
* breakpoint.c (break_command_1): Return void.
(break_command_really): Return void. Rethrow exceptions instead of returning. (gdb_breakpoint): Remove the error_message parameter. Return void. Rename to set_breakpoint. * gdb.h (gdb_breakpoint): Rename and move to... * breakpoint.h (set_breakpoint): ...here. * mi/mi-cmb-break.c (mi_cmd_break_insert): Restore event hooks even if exception is thrown. Adjust to gdb_breakpoint interface changes.
Diffstat (limited to 'gdb/testsuite/gdb.mi/basics.c')
-rw-r--r--gdb/testsuite/gdb.mi/basics.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.mi/basics.c b/gdb/testsuite/gdb.mi/basics.c
index 5b52112..e4be7b2 100644
--- a/gdb/testsuite/gdb.mi/basics.c
+++ b/gdb/testsuite/gdb.mi/basics.c
@@ -51,6 +51,11 @@ void callme (int i)
printf ("callme\n");
}
+int return_1 ()
+{
+ return 1;
+}
+
main ()
{
callee1 (2, "A string argument.", 3.5);