public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug breakpoints/15697] New: Unnecessary =breakpoint-modified event when hitting dprintf
@ 2013-06-27 20:31 marc.khouzam at ericsson dot com
  2014-01-10 16:24 ` [Bug breakpoints/15697] " marc.khouzam at ericsson dot com
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: marc.khouzam at ericsson dot com @ 2013-06-27 20:31 UTC (permalink / raw)
  To: gdb-prs

http://sourceware.org/bugzilla/show_bug.cgi?id=15697

            Bug ID: 15697
           Summary: Unnecessary =breakpoint-modified event when hitting
                    dprintf
           Product: gdb
           Version: HEAD
            Status: NEW
          Severity: normal
          Priority: P2
         Component: breakpoints
          Assignee: unassigned at sourceware dot org
          Reporter: marc.khouzam at ericsson dot com

I believe there was an agreement that it was not a good idea to send a
=breakpoint-modified event each time a dprintf was hit.  When a dprintf is in a
loop, these event can become quite inefficient.  Furthermore, these events are
not sent when using 'agent' dprintf-style.

Please see discussion and agreement here:
http://sourceware.org/ml/gdb-patches/2013-03/msg00260.html
http://sourceware.org/ml/gdb-patches/2013-03/msg00380.html

(note that if this change is made, it would nullify Bug 15694)

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug breakpoints/15697] Unnecessary =breakpoint-modified event when hitting dprintf
  2013-06-27 20:31 [Bug breakpoints/15697] New: Unnecessary =breakpoint-modified event when hitting dprintf marc.khouzam at ericsson dot com
@ 2014-01-10 16:24 ` marc.khouzam at ericsson dot com
  2014-04-06  4:09 ` malaperle at gmail dot com
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: marc.khouzam at ericsson dot com @ 2014-01-10 16:24 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=15697

--- Comment #1 from Marc Khouzam <marc.khouzam at ericsson dot com> ---
I'm still worried about this =breakpoint-modified being sent every time a
dprintf hits.  Sounds like excessive noise towards the frontend.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug breakpoints/15697] Unnecessary =breakpoint-modified event when hitting dprintf
  2013-06-27 20:31 [Bug breakpoints/15697] New: Unnecessary =breakpoint-modified event when hitting dprintf marc.khouzam at ericsson dot com
  2014-01-10 16:24 ` [Bug breakpoints/15697] " marc.khouzam at ericsson dot com
@ 2014-04-06  4:09 ` malaperle at gmail dot com
  2014-04-28 20:26 ` marc.khouzam at ericsson dot com
  2014-06-03 18:09 ` marc.khouzam at ericsson dot com
  3 siblings, 0 replies; 5+ messages in thread
From: malaperle at gmail dot com @ 2014-04-06  4:09 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=15697

Marc-Andre Laperle <malaperle at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |malaperle at gmail dot com

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug breakpoints/15697] Unnecessary =breakpoint-modified event when hitting dprintf
  2013-06-27 20:31 [Bug breakpoints/15697] New: Unnecessary =breakpoint-modified event when hitting dprintf marc.khouzam at ericsson dot com
  2014-01-10 16:24 ` [Bug breakpoints/15697] " marc.khouzam at ericsson dot com
  2014-04-06  4:09 ` malaperle at gmail dot com
@ 2014-04-28 20:26 ` marc.khouzam at ericsson dot com
  2014-06-03 18:09 ` marc.khouzam at ericsson dot com
  3 siblings, 0 replies; 5+ messages in thread
From: marc.khouzam at ericsson dot com @ 2014-04-28 20:26 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=15697

--- Comment #2 from Marc Khouzam <marc.khouzam at ericsson dot com> ---
Proposed fix:
https://sourceware.org/ml/gdb-patches/2014-04/msg00601.html

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug breakpoints/15697] Unnecessary =breakpoint-modified event when hitting dprintf
  2013-06-27 20:31 [Bug breakpoints/15697] New: Unnecessary =breakpoint-modified event when hitting dprintf marc.khouzam at ericsson dot com
                   ` (2 preceding siblings ...)
  2014-04-28 20:26 ` marc.khouzam at ericsson dot com
@ 2014-06-03 18:09 ` marc.khouzam at ericsson dot com
  3 siblings, 0 replies; 5+ messages in thread
From: marc.khouzam at ericsson dot com @ 2014-06-03 18:09 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=15697

Marc Khouzam <marc.khouzam at ericsson dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |WONTFIX

--- Comment #3 from Marc Khouzam <marc.khouzam at ericsson dot com> ---
It turns out that it was not the =breakpoint-modified event causing a
performance degradation but the extra *running events reported by bug 15693.

I'm marking this bug as WONTFIX based on Pedro's arguments:
https://sourceware.org/ml/gdb-patches/2014-04/msg00623.html

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-06-03 18:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-27 20:31 [Bug breakpoints/15697] New: Unnecessary =breakpoint-modified event when hitting dprintf marc.khouzam at ericsson dot com
2014-01-10 16:24 ` [Bug breakpoints/15697] " marc.khouzam at ericsson dot com
2014-04-06  4:09 ` malaperle at gmail dot com
2014-04-28 20:26 ` marc.khouzam at ericsson dot com
2014-06-03 18:09 ` marc.khouzam at ericsson dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).