diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2011-04-24 08:02:21 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2011-04-24 08:02:21 +0000 |
commit | 03f2bd594285c4077619f9039748ac7389cffaef (patch) | |
tree | 051f5ae03938fcd6dc87cf08b0bfdbb8d4214281 /gdb/ChangeLog | |
parent | 3b488de17a147e0a1c7e93d68c6024353a00db72 (diff) | |
download | gdb-03f2bd594285c4077619f9039748ac7389cffaef.zip gdb-03f2bd594285c4077619f9039748ac7389cffaef.tar.gz gdb-03f2bd594285c4077619f9039748ac7389cffaef.tar.bz2 |
gdb/
* NEWS: Document the new gdbserver --once option.
gdb/doc/
* gdb.texinfo (Starting and Stopping Trace Experiments): New anchor
for disconnected tracing.
(Multi-Process Mode for @code{gdbserver}): Mention --multi and
extended-remote relationship. Mention --once.
(TCP port allocation lifecycle of @code{gdbserver}): New.
gdb/gdbserver/
* remote-utils.c (handle_accept_event): Close LISTEN_DESC only if
RUN_ONCE. Comment for the LISTEN_DESC delete_file_handler call.
(remote_prepare): New function with most of the TCP code from ...
(remote_open): ... here. Detect PORT here unconditionally. Move also
setting transport_is_reliable.
* server.c (run_once): New variable.
(gdbserver_usage): Document it.
(main): Set run_once for `--once'. Call remote_prepare. Exit after
the first run if RUN_ONCE.
* server.h (run_once, remote_prepare): New declarations.
gdb/testsuite/
* gdb.base/solib-disc.exp: Set gdbserver_reconnect_p.
* lib/gdb.exp (gdb_init): Clear gdbserver_reconnect_p.
* lib/gdbserver-support.exp (gdbserver_start): Add `--once' if
!gdbserver_reconnect_p..
(gdbserver_reconnect): Call error if !gdbserver_reconnect_p..
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 326e5a9..09681fd 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2011-04-24 Jan Kratochvil <jan.kratochvil@redhat.com> + Eli Zaretskii <eliz@gnu.org> + + * NEWS: Document the new gdbserver --once option. + 2011-04-21 Jie Zhang <jzhang918@gmail.com> * MAINTAINERS: Update my email address. |