public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug dap/30473] New: Emit DAP Process event
@ 2023-05-19 15:07 tromey at sourceware dot org
2023-10-06 15:55 ` [Bug dap/30473] " tromey at sourceware dot org
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: tromey at sourceware dot org @ 2023-05-19 15:07 UTC (permalink / raw)
To: gdb-prs
https://sourceware.org/bugzilla/show_bug.cgi?id=30473
Bug ID: 30473
Summary: Emit DAP Process event
Product: gdb
Version: HEAD
Status: NEW
Severity: normal
Priority: P2
Component: dap
Assignee: unassigned at sourceware dot org
Reporter: tromey at sourceware dot org
Target Milestone: ---
DAP specifies a Process event that should be emitted
when starting or attaching. gdb currently does not do this.
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Bug dap/30473] Emit DAP Process event
2023-05-19 15:07 [Bug dap/30473] New: Emit DAP Process event tromey at sourceware dot org
@ 2023-10-06 15:55 ` tromey at sourceware dot org
2023-10-06 20:30 ` tromey at sourceware dot org
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: tromey at sourceware dot org @ 2023-10-06 15:55 UTC (permalink / raw)
To: gdb-prs
https://sourceware.org/bugzilla/show_bug.cgi?id=30473
--- Comment #1 from Tom Tromey <tromey at sourceware dot org> ---
See https://github.com/microsoft/debug-adapter-protocol/issues/439
... requested clarification of the meaning of "system process".
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Bug dap/30473] Emit DAP Process event
2023-05-19 15:07 [Bug dap/30473] New: Emit DAP Process event tromey at sourceware dot org
2023-10-06 15:55 ` [Bug dap/30473] " tromey at sourceware dot org
@ 2023-10-06 20:30 ` tromey at sourceware dot org
2023-11-14 19:25 ` tromey at sourceware dot org
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: tromey at sourceware dot org @ 2023-10-06 20:30 UTC (permalink / raw)
To: gdb-prs
https://sourceware.org/bugzilla/show_bug.cgi?id=30473
--- Comment #2 from Tom Tromey <tromey at sourceware dot org> ---
I have a patch to add this, but I wonder when it should be sent.
For "attach" it is currently sent after a bunch of other events
(new thread, new module). That's probably too late but the spec
doesn't really say.
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Bug dap/30473] Emit DAP Process event
2023-05-19 15:07 [Bug dap/30473] New: Emit DAP Process event tromey at sourceware dot org
2023-10-06 15:55 ` [Bug dap/30473] " tromey at sourceware dot org
2023-10-06 20:30 ` tromey at sourceware dot org
@ 2023-11-14 19:25 ` tromey at sourceware dot org
2023-11-28 15:56 ` cvs-commit at gcc dot gnu.org
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: tromey at sourceware dot org @ 2023-11-14 19:25 UTC (permalink / raw)
To: gdb-prs
https://sourceware.org/bugzilla/show_bug.cgi?id=30473
Tom Tromey <tromey at sourceware dot org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Assignee|unassigned at sourceware dot org |tromey at sourceware dot org
--- Comment #3 from Tom Tromey <tromey at sourceware dot org> ---
https://sourceware.org/pipermail/gdb-patches/2023-November/204163.html
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Bug dap/30473] Emit DAP Process event
2023-05-19 15:07 [Bug dap/30473] New: Emit DAP Process event tromey at sourceware dot org
` (2 preceding siblings ...)
2023-11-14 19:25 ` tromey at sourceware dot org
@ 2023-11-28 15:56 ` cvs-commit at gcc dot gnu.org
2023-11-28 15:57 ` tromey at sourceware dot org
2023-12-11 15:45 ` cvs-commit at gcc dot gnu.org
5 siblings, 0 replies; 7+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2023-11-28 15:56 UTC (permalink / raw)
To: gdb-prs
https://sourceware.org/bugzilla/show_bug.cgi?id=30473
--- Comment #4 from Sourceware Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Tom Tromey <tromey@sourceware.org>:
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=14e461bed44258fb872731a79ca5e82b70781d09
commit 14e461bed44258fb872731a79ca5e82b70781d09
Author: Tom Tromey <tromey@adacore.com>
Date: Fri Oct 6 14:30:46 2023 -0600
Emit DAP "process" event
DAP specifies a "process" event that is sent when a process is started
or attached to. gdb was not emitting this (several DAP clients appear
to ignore it entirely), but it looked easy and harmless to implement.
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=30473
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Bug dap/30473] Emit DAP Process event
2023-05-19 15:07 [Bug dap/30473] New: Emit DAP Process event tromey at sourceware dot org
` (3 preceding siblings ...)
2023-11-28 15:56 ` cvs-commit at gcc dot gnu.org
@ 2023-11-28 15:57 ` tromey at sourceware dot org
2023-12-11 15:45 ` cvs-commit at gcc dot gnu.org
5 siblings, 0 replies; 7+ messages in thread
From: tromey at sourceware dot org @ 2023-11-28 15:57 UTC (permalink / raw)
To: gdb-prs
https://sourceware.org/bugzilla/show_bug.cgi?id=30473
Tom Tromey <tromey at sourceware dot org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Target Milestone|--- |15.1
Resolution|--- |FIXED
--- Comment #5 from Tom Tromey <tromey at sourceware dot org> ---
Fixed.
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Bug dap/30473] Emit DAP Process event
2023-05-19 15:07 [Bug dap/30473] New: Emit DAP Process event tromey at sourceware dot org
` (4 preceding siblings ...)
2023-11-28 15:57 ` tromey at sourceware dot org
@ 2023-12-11 15:45 ` cvs-commit at gcc dot gnu.org
5 siblings, 0 replies; 7+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2023-12-11 15:45 UTC (permalink / raw)
To: gdb-prs
https://sourceware.org/bugzilla/show_bug.cgi?id=30473
--- Comment #6 from Sourceware Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Tom Tromey <tromey@sourceware.org>:
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=9a099bc220fbc97e9ccff6a7e1861e11665e8899
commit 9a099bc220fbc97e9ccff6a7e1861e11665e8899
Author: Tom Tromey <tromey@adacore.com>
Date: Mon Dec 11 07:50:46 2023 -0700
Add DAP items to NEWS
Now that DAP is in GDB 14, significant changes to it should be noted
in NEWS. This patch adds a note for a fix that's already gone in. I
started a new section in NEWS because more changes are coming.
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=30473
Approved-By: Eli Zaretskii <eliz@gnu.org>
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-12-11 15:45 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-19 15:07 [Bug dap/30473] New: Emit DAP Process event tromey at sourceware dot org
2023-10-06 15:55 ` [Bug dap/30473] " tromey at sourceware dot org
2023-10-06 20:30 ` tromey at sourceware dot org
2023-11-14 19:25 ` tromey at sourceware dot org
2023-11-28 15:56 ` cvs-commit at gcc dot gnu.org
2023-11-28 15:57 ` tromey at sourceware dot org
2023-12-11 15:45 ` cvs-commit at gcc dot gnu.org
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).