Remove cleanups from execute_gdb_command

This replaces a cleanup in execute_gdb_command with an instance of
std::string.

Testing showed that this originally missed a cleanup that was returned
by prevent_dont_repeat.  This version of the patch changes
prevent_dont_repeat to return a scoped_restore rather than a cleanup.

2017-01-10  Tom Tromey  <tom@tromey.com>

	* top.c (prevent_dont_repeat): Change return type.
	* python/python.c (execute_gdb_command): Use std::string.
	Update.
	* guile/guile.c (gdbscm_execute_gdb_command): Update.
	* command.h (prevent_dont_repeat): Change return type.
	* breakpoint.c (bpstat_do_actions_1): Update.
This commit is contained in:
Tom Tromey 2016-11-28 21:11:53 -07:00
parent 0cf0822778
commit 1ac32117f7
6 changed files with 18 additions and 14 deletions

View file

@ -1,3 +1,12 @@
2017-01-10 Tom Tromey <tom@tromey.com>
* top.c (prevent_dont_repeat): Change return type.
* python/python.c (execute_gdb_command): Use std::string.
Update.
* guile/guile.c (gdbscm_execute_gdb_command): Update.
* command.h (prevent_dont_repeat): Change return type.
* breakpoint.c (bpstat_do_actions_1): Update.
2017-01-10 Tom Tromey <tom@tromey.com> 2017-01-10 Tom Tromey <tom@tromey.com>
* value.h (scoped_value_mark::~scoped_value_mark): Call * value.h (scoped_value_mark::~scoped_value_mark): Call

View file

@ -4685,7 +4685,7 @@ bpstat_do_actions_1 (bpstat *bsp)
executing_breakpoint_commands = 1; executing_breakpoint_commands = 1;
old_chain = make_cleanup (cleanup_executing_breakpoints, 0); old_chain = make_cleanup (cleanup_executing_breakpoints, 0);
prevent_dont_repeat (); scoped_restore preventer = prevent_dont_repeat ();
/* This pointer will iterate over the list of bpstat's. */ /* This pointer will iterate over the list of bpstat's. */
bs = *bsp; bs = *bsp;

View file

@ -408,7 +408,7 @@ extern void error_no_arg (const char *) ATTRIBUTE_NORETURN;
extern void dont_repeat (void); extern void dont_repeat (void);
extern struct cleanup *prevent_dont_repeat (void); extern scoped_restore_tmpl<int> prevent_dont_repeat (void);
/* Used to mark commands that don't do anything. If we just leave the /* Used to mark commands that don't do anything. If we just leave the
function field NULL, the command is interpreted as a help topic, or function field NULL, the command is interpreted as a help topic, or

View file

@ -332,7 +332,7 @@ gdbscm_execute_gdb_command (SCM command_scm, SCM rest)
inner_cleanups = make_cleanup_restore_integer (&current_ui->async); inner_cleanups = make_cleanup_restore_integer (&current_ui->async);
current_ui->async = 0; current_ui->async = 0;
prevent_dont_repeat (); scoped_restore preventer = prevent_dont_repeat ();
if (to_string) if (to_string)
to_string_res = execute_command_to_string (command, from_tty); to_string_res = execute_command_to_string (command, from_tty);
else else

View file

@ -601,8 +601,7 @@ execute_gdb_command (PyObject *self, PyObject *args, PyObject *kw)
TRY TRY
{ {
/* Copy the argument text in case the command modifies it. */ /* Copy the argument text in case the command modifies it. */
char *copy = xstrdup (arg); std::string copy (arg);
struct cleanup *cleanup = make_cleanup (xfree, copy);
struct interp *interp; struct interp *interp;
scoped_restore save_async = make_scoped_restore (&current_ui->async, 0); scoped_restore save_async = make_scoped_restore (&current_ui->async, 0);
@ -614,12 +613,11 @@ execute_gdb_command (PyObject *self, PyObject *args, PyObject *kw)
interp = interp_lookup (current_ui, "console"); interp = interp_lookup (current_ui, "console");
current_uiout = interp_ui_out (interp); current_uiout = interp_ui_out (interp);
prevent_dont_repeat (); scoped_restore preventer = prevent_dont_repeat ();
if (to_string) if (to_string)
to_string_res = execute_command_to_string (copy, from_tty); to_string_res = execute_command_to_string (&copy[0], from_tty);
else else
execute_command (copy, from_tty); execute_command (&copy[0], from_tty);
do_cleanups (cleanup);
} }
CATCH (except, RETURN_MASK_ALL) CATCH (except, RETURN_MASK_ALL)
{ {

View file

@ -755,13 +755,10 @@ dont_repeat (void)
/* Prevent dont_repeat from working, and return a cleanup that /* Prevent dont_repeat from working, and return a cleanup that
restores the previous state. */ restores the previous state. */
struct cleanup * scoped_restore_tmpl<int>
prevent_dont_repeat (void) prevent_dont_repeat (void)
{ {
struct cleanup *result = make_cleanup_restore_integer (&suppress_dont_repeat); return make_scoped_restore (&suppress_dont_repeat, 1);
suppress_dont_repeat = 1;
return result;
} }