diff options
author | Tom Tromey <tromey@adacore.com> | 2023-05-09 14:20:31 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2023-06-12 12:09:18 -0600 |
commit | d01f36bdfabaae60fa90134b70e2945bb530fa05 (patch) | |
tree | 55846bd17d42b9573a60cc4aef13768fe7c45cb6 /gdb/doc | |
parent | 69ed07d5465e447c461bdc6b1f36b7b2575d7fe1 (diff) | |
download | fsf-binutils-gdb-d01f36bdfabaae60fa90134b70e2945bb530fa05.zip fsf-binutils-gdb-d01f36bdfabaae60fa90134b70e2945bb530fa05.tar.gz fsf-binutils-gdb-d01f36bdfabaae60fa90134b70e2945bb530fa05.tar.bz2 |
Implement DAP attach request
This implements the DAP "attach" request.
Note that the copyright dates on the new test source file are not
incorrect -- this was copied verbatim from another directory.
Reviewed-By: Eli Zaretskii <eliz@gnu.org>
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/gdb.texinfo | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 40d1f24..5823bf2 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -39070,6 +39070,14 @@ If provided, this is a string that specifies the program to use. This corresponds to the @code{file} command. @xref{Files}. @end table +@value{GDBN} defines a parameter that can be passed to the +@code{attach} request: + +@table @code +@item pid +The process ID to which @value{GDBN} should attach. @xref{Attach}. +@end table + @node JIT Interface @chapter JIT Compilation Interface @cindex just-in-time compilation |