Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Jim Blandy <jimb@red-bean.com>
To: gdb-patches@sources.redhat.com
Subject: RFA: organize 'target remote' options
Date: Wed, 08 Mar 2006 07:37:00 -0000	[thread overview]
Message-ID: <vt2pskxvqlc.fsf@theseus.home.> (raw)


src/gdb/doc/ChangeLog:
2006-03-07  Jim Blandy  <jimb@red-bean.com>

	* gdb.texinfo (Connecting): Organize the different 'target remote'
	connection methods into a table.  Add a 'target remote' index
	entry. (!!!)

Index: src/gdb/doc/gdb.texinfo
===================================================================
*** src.orig/gdb/doc/gdb.texinfo
--- src/gdb/doc/gdb.texinfo
*************** your program, since @value{GDBN} needs s
*** 12143,12179 ****
  Start up @value{GDBN} as usual, using the name of the local copy of your
  program as the first argument.
  
  @cindex serial line, @code{target remote}
  If you're using a serial line, you may want to give @value{GDBN} the
  @w{@samp{--baud}} option, or use the @code{set remotebaud} command
  (@pxref{Remote configuration, set remotebaud}) before the
  @code{target} command.
  
! After that, use @code{target remote} to establish communications with
! the target machine.  Its argument specifies how to communicate---either
! via a devicename attached to a direct serial line, or a TCP or UDP port
! (possibly to a terminal server which in turn has a serial line to the
! target).  For example, to use a serial line connected to the device
! named @file{/dev/ttyb}:
! 
! @smallexample
! target remote /dev/ttyb
! @end smallexample
  
! @cindex TCP port, @code{target remote}
! To use a TCP connection, use an argument of the form
! @code{@var{host}:@var{port}} or @code{tcp:@var{host}:@var{port}}.
! For example, to connect to port 2828 on a
! terminal server named @code{manyfarms}:
  
  @smallexample
  target remote manyfarms:2828
  @end smallexample
  
! If your remote target is actually running on the same machine as
! your debugger session (e.g.@: a simulator of your target running on
! the same host), you can omit the hostname.  For example, to connect
! to port 1234 on your local machine:
  
  @smallexample
  target remote :1234
--- 12143,12193 ----
  Start up @value{GDBN} as usual, using the name of the local copy of your
  program as the first argument.
  
+ @cindex @code{target remote}
+ @value{GDBN} can communicate with the target over a serial line, or
+ over an @acronym{IP} network using @acronym{TCP} or @acronym{UDP}.  In
+ each case, @value{GDBN} uses the same protocol for debugging your
+ program; only the medium carrying the debugging packets varies.  The
+ @code{target remote} command establishes a connection to the target.
+ Its arguments indicate which medium to use:
+ 
+ @table @code
+ 
+ @item target remote @var{serial-device}
  @cindex serial line, @code{target remote}
+ Use @var{serial-device} to communicate with the target.  For example,
+ to use a serial line connected to the device named @file{/dev/ttyb}:
+ 
+ @smallexample
+ target remote /dev/ttyb
+ @end smallexample
+ 
  If you're using a serial line, you may want to give @value{GDBN} the
  @w{@samp{--baud}} option, or use the @code{set remotebaud} command
  (@pxref{Remote configuration, set remotebaud}) before the
  @code{target} command.
  
! @item target remote @code{@var{host}:@var{port}}
! @itemx target remote @code{tcp:@var{host}:@var{port}}
! @cindex @acronym{TCP} port, @code{target remote}
! Debug using a @acronym{TCP} connection to @var{port} on @var{host}.
! The @var{host} may be either a host name or a numeric @acronym{IP}
! address; @var{port} must be a decimal number.  The @var{host} could be
! the target machine itself, if it is directly connected to the net, or
! it might be a terminal server which in turn has a serial line to the
! target.
  
! For example, to connect to port 2828 on a terminal server named
! @code{manyfarms}:
  
  @smallexample
  target remote manyfarms:2828
  @end smallexample
  
! If your remote target is actually running on the same machine as your
! debugger session (e.g.@: a simulator for your target running on the
! same host), you can omit the hostname.  For example, to connect to
! port 1234 on your local machine:
  
  @smallexample
  target remote :1234
*************** target remote :1234
*** 12182,12203 ****
  
  Note that the colon is still required here.
  
! @cindex UDP port, @code{target remote}
! To use a UDP connection, use an argument of the form
! @code{udp:@var{host}:@var{port}}.  For example, to connect to UDP port 2828
! on a terminal server named @code{manyfarms}:
  
  @smallexample
  target remote udp:manyfarms:2828
  @end smallexample
  
! When using a UDP connection for remote debugging, you should keep in mind
! that the `U' stands for ``Unreliable''.  UDP can silently drop packets on
! busy or unreliable networks, which will cause havoc with your debugging
! session.
  
! Now you can use all the usual commands to examine and change data and to
! step and continue the remote program.
  
  @cindex interrupting remote programs
  @cindex remote programs, interrupting
--- 12196,12220 ----
  
  Note that the colon is still required here.
  
! @item target remote @code{udp:@var{host}:@var{port}}
! @cindex @acronym{UDP} port, @code{target remote}
! Debug using @acronym{UDP} packets to @var{port} on @var{host}.  For example, to
! connect to @acronym{UDP} port 2828 on a terminal server named @code{manyfarms}:
  
  @smallexample
  target remote udp:manyfarms:2828
  @end smallexample
  
! When using a @acronym{UDP} connection for remote debugging, you should
! keep in mind that the `U' stands for ``Unreliable''.  @acronym{UDP}
! can silently drop packets on busy or unreliable networks, which will
! cause havoc with your debugging session.
! 
! @end table
  
! Once the connection has been established, you can use all the usual
! commands to examine and change data and to step and continue the
! remote program.
  
  @cindex interrupting remote programs
  @cindex remote programs, interrupting


             reply	other threads:[~2006-03-07 22:26 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-03-08  7:37 Jim Blandy [this message]
2006-03-09 15:37 ` Eli Zaretskii
2006-03-09 19:08   ` Jim Blandy

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=vt2pskxvqlc.fsf@theseus.home. \
    --to=jimb@red-bean.com \
    --cc=gdb-patches@sources.redhat.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