From: John Gilmore Date: Wed, 5 Aug 1992 17:49:48 +0000 (+0000) Subject: Update comments. It doesn't do MiniMON, it does UDI! X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=15ee4caab231b40b30ecf294454b82c0473401e2;p=binutils-gdb.git Update comments. It doesn't do MiniMON, it does UDI! --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c4f2f0afb29..6b22c7be40e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,7 @@ Wed Aug 5 01:42:40 1992 John Gilmore (gnu at cygnus.com) + * remote-udi.c: Update comments. + * remote.c (getpkt): Only force retransmission ten times; after that, assume bug in target code, and handle pkt anyway. diff --git a/gdb/remote-udi.c b/gdb/remote-udi.c index c2467cede9d..9794efbb3ed 100644 --- a/gdb/remote-udi.c +++ b/gdb/remote-udi.c @@ -1,4 +1,4 @@ -/* Remote debugging interface for Am290*0 running MiniMON monitor, for GDB. +/* Remote debugging interface for AMD 29k interfaced via UDI, for GDB. Copyright 1990, 1992 Free Software Foundation, Inc. Written by Daniel Mann. Contributed by AMD. @@ -18,9 +18,13 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* This is like remote.c but expects MiniMON to be running on the Am29000 - target hardware. - - Originally written by Daniel Mann at AMD for gdb 3.91.6. +/* This is like remote.c but uses the Universal Debug Interface (UDI) to + talk to the target hardware (or simulator). UDI is a TCP/IP based + protocol; for hardware that doesn't run TCP, an interface adapter + daemon talks UDI on one side, and talks to the hardware (typically + over a serial port) on the other side. + + - Originally written by Daniel Mann at AMD for MiniMON and gdb 3.91.6. - David Wood (wood@lab.ultra.nyu.edu) at New York University adapted this file to gdb 3.95. I was unable to get this working on sun3os4 with termio, only with sgtty. Because we are only attempting to @@ -29,7 +33,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ As a result this module has only the stubs to download files. You should get tagged at compile time if you need to make any changes/additions. -*- Daniel Mann at AMD took the 3.95 adaptions above and replaced + - Daniel Mann at AMD took the 3.95 adaptions above and replaced MiniMON interface with UDI-p interface. */ #include "defs.h" @@ -1324,7 +1328,7 @@ int QuietMode = 0; /* used for debugging */ */ static struct target_ops udi_ops = { "udi", "Remote UDI connected TIP", - "Remote debug an Am290*0 using socket connection to TIP process ", + "Remote debug an AMD 29k using UDI socket connection to TIP process", udi_open, udi_close, udi_attach, udi_detach, udi_resume, udi_wait, udi_fetch_registers, udi_store_registers,