Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Eli Zaretskii <eliz@gnu.org>
To: Vladimir Prus <vladimir@codesourcery.com>
Cc: gdb-patches@sources.redhat.com
Subject: Re: [7/9] simplify pending breakpoints
Date: Sat, 08 Sep 2007 11:26:00 -0000	[thread overview]
Message-ID: <u3axps8ib.fsf@gnu.org> (raw)
In-Reply-To: <200709080150.05068.vladimir@codesourcery.com> (message from 	Vladimir Prus on Sat, 8 Sep 2007 01:50:04 +0400)

> From: Vladimir Prus <vladimir@codesourcery.com>
> Date: Sat, 8 Sep 2007 01:50:04 +0400
> 
> @@ -5422,12 +5355,9 @@ break_command_1 (char *arg, int flag, in
>      }
>    else
>      {
> -      struct symtab_and_line sal;
> +      struct symtab_and_line sal = {};

Is this a valid initializer in ISO C?  I think it isn't; at least
under -pedantic, GCC says:

    ttt.c: In function `foo':
    ttt.c:6: warning: ISO C forbids empty initializer braces

> +static void
> +unlink_locations_from_global_list (struct breakpoint *bpt)
> +  /* Remove locations of this breakpoint from the list of
> +     all breakpoint locations.  */
> +{

Style: I think GNU coding standards discourage comments between the
function's definition line and the opening braces.

> +static void
> +update_breakpoint_location (struct breakpoint *b,
> +			    struct symtabs_and_lines sals)
> +{
> +  int i;
> +  char *s;
> +  /* FIXME: memleak.  */

Is there a memory leak here?

> @@ -7164,11 +7185,13 @@ breakpoint_re_set_one (void *bint)
>    struct breakpoint *b = (struct breakpoint *) bint;
>    struct value *mark;
>    int i;
> -  int not_found;
> -  int *not_found_ptr = NULL;
> -  struct symtabs_and_lines sals;
> +  int not_found = 0;
> +  int *not_found_ptr = &not_found;
> +  struct symtabs_and_lines sals = {};

See above.

> -	      breakpoints_changed ();
> +	      /* We surely don't want to warn about the same breakpoint
> +		 10 times.

Why not?  They are different breakpoints.


  reply	other threads:[~2007-09-08 11:26 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-09-07 21:51 Vladimir Prus
2007-09-08 11:26 ` Eli Zaretskii [this message]
2007-09-08 11:43   ` Vladimir Prus
2007-09-08 12:25     ` Eli Zaretskii
2007-09-22 18:04       ` Vladimir Prus
2007-09-22 18:29         ` Eli Zaretskii
2007-09-08 12:33     ` Andreas Schwab
2007-09-09 19:53 ` Joel Brobecker

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=u3axps8ib.fsf@gnu.org \
    --to=eliz@gnu.org \
    --cc=gdb-patches@sources.redhat.com \
    --cc=vladimir@codesourcery.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox