diff options
author | Thiago Jung Bauermann <bauerman@br.ibm.com> | 2011-05-13 04:34:25 +0000 |
---|---|---|
committer | Thiago Jung Bauermann <bauerman@br.ibm.com> | 2011-05-13 04:34:25 +0000 |
commit | 028d0ed5d19d1c164d9ee4f4f85743ca7e955e52 (patch) | |
tree | 971789eee44563ba8452513041730d09151eac1e /gdb/mi | |
parent | c9eaa05f39a20ebdd807dcf8141a22e08bb613f1 (diff) | |
download | gdb-028d0ed5d19d1c164d9ee4f4f85743ca7e955e52.zip gdb-028d0ed5d19d1c164d9ee4f4f85743ca7e955e52.tar.gz gdb-028d0ed5d19d1c164d9ee4f4f85743ca7e955e52.tar.bz2 |
gdb/
* mi/mi-main.c (mi_cmd_execute): Use cleanup from
prepare_execute_command.
* top.c (prepare_execute_command): Return cleanup.
(execute_command): Use cleanup from prepare_execute_command.
* top.h (prepare_execute_command): Change prototype to return
cleanup.
* defs.h (struct value): Add opaque declaration.
(make_cleanup_value_free_to_mark): Add prototype.
* utils.c (do_value_free_to_mark): New function.
(make_cleanup_value_free_to_mark): Likewise.
gdb/testsuite/
* gdb.python/py-function.exp: Test setting a value from a function
which executes a command.
Diffstat (limited to 'gdb/mi')
-rw-r--r-- | gdb/mi/mi-main.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/mi/mi-main.c b/gdb/mi/mi-main.c index e37f3b5..5181273 100644 --- a/gdb/mi/mi-main.c +++ b/gdb/mi/mi-main.c @@ -2025,9 +2025,7 @@ mi_cmd_execute (struct mi_parse *parse) { struct cleanup *cleanup; - prepare_execute_command (); - - cleanup = make_cleanup (null_cleanup, NULL); + cleanup = prepare_execute_command (); if (parse->all && parse->thread_group != -1) error (_("Cannot specify --thread-group together with --all")); |