* breakpoint.c (break_command_really): Rename local variable

breakpoint_chain to bkpt_chain.
This commit is contained in:
Pedro Alves 2009-06-11 18:51:42 +00:00
parent dbfb31a45c
commit 80c99de1bc
2 changed files with 14 additions and 10 deletions

View file

@ -1,3 +1,8 @@
2009-06-11 Pedro Alves <pedro@codesourcery.com>
* breakpoint.c (break_command_really): Rename local variable
breakpoint_chain to bkpt_chain.
2009-06-11 Aleksandar Ristovski <aristovski@qnx.com> 2009-06-11 Aleksandar Ristovski <aristovski@qnx.com>
Add support for XMM registers. Add support for XMM registers.

View file

@ -5688,7 +5688,7 @@ break_command_really (char *arg, char *cond_string, int thread,
char *addr_start = arg; char *addr_start = arg;
char **addr_string; char **addr_string;
struct cleanup *old_chain; struct cleanup *old_chain;
struct cleanup *breakpoint_chain = NULL; struct cleanup *bkpt_chain = NULL;
struct captured_parse_breakpoint_args parse_args; struct captured_parse_breakpoint_args parse_args;
int i; int i;
int pending = 0; int pending = 0;
@ -5766,12 +5766,11 @@ break_command_really (char *arg, char *cond_string, int thread,
/* ----------------------------- SNIP ----------------------------- /* ----------------------------- SNIP -----------------------------
Anything added to the cleanup chain beyond this point is assumed Anything added to the cleanup chain beyond this point is assumed
to be part of a breakpoint. If the breakpoint create succeeds to be part of a breakpoint. If the breakpoint create succeeds
then the memory is not reclaimed. */ then the memory is not reclaimed. */
breakpoint_chain = make_cleanup (null_cleanup, 0); bkpt_chain = make_cleanup (null_cleanup, 0);
/* Mark the contents of the addr_string for cleanup. These go on /* Mark the contents of the addr_string for cleanup. These go on
the breakpoint_chain and only occure if the breakpoint create the bkpt_chain and only occur if the breakpoint create fails. */
fails. */
for (i = 0; i < sals.nelts; i++) for (i = 0; i < sals.nelts; i++)
{ {
if (addr_string[i] != NULL) if (addr_string[i] != NULL)
@ -5843,13 +5842,13 @@ break_command_really (char *arg, char *cond_string, int thread,
if (sals.nelts > 1) if (sals.nelts > 1)
warning (_("Multiple breakpoints were set.\n" warning (_("Multiple breakpoints were set.\n"
"Use the \"delete\" command to delete unwanted breakpoints.")); "Use the \"delete\" command to delete unwanted breakpoints."));
/* That's it. Discard the cleanups for data inserted into the /* That's it. Discard the cleanups for data inserted into the
breakpoint. */ breakpoint. */
discard_cleanups (breakpoint_chain); discard_cleanups (bkpt_chain);
/* But cleanup everything else. */ /* But cleanup everything else. */
do_cleanups (old_chain); do_cleanups (old_chain);
/* error call may happen here - have BREAKPOINT_CHAIN already discarded. */ /* error call may happen here - have BKPT_CHAIN already discarded. */
update_global_location_list (1); update_global_location_list (1);
} }