diff options
author | Stu Grossman <grossman@cygnus> | 1995-06-08 22:42:36 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1995-06-08 22:42:36 +0000 |
commit | 4887063b3ce78e39fac8a79d01fa01234ab95174 (patch) | |
tree | 0c715153cace5669953c7feca4a67d1a3d010651 /gdb/serial.h | |
parent | 311f7c4b6a19b0e4376e8985491a832cfd28a315 (diff) | |
download | gdb-4887063b3ce78e39fac8a79d01fa01234ab95174.zip gdb-4887063b3ce78e39fac8a79d01fa01234ab95174.tar.gz gdb-4887063b3ce78e39fac8a79d01fa01234ab95174.tar.bz2 |
* defs.h maint.c monitor.c remote-mips.c remote.c: Add support
for `watchdog' variable. This allows the user to put an upper
limit on the amount of time that GDB will wait for the target to
return from a step or continue operation. This will primarily be
used for the testsuite, where it is difficult to come up with a
reasonable timeout for things like function calls, which can take
as long as three minutes under some circumstances. If the
watchdog timer expires, GDB will generate an error that looks like
`Watchdog has expired.', and will detach from the target.
* remote-mips.c (mips_open): Setup initial frame from target.
Print it out so that user is told where the program is stopped
when they attach.
* remote-nrom.c: Loads of cleanups. Use serial code to open
network connections. Use expect() to wait for response to
download command.
* ser-tcp.c (tcp_open): Retry connection if we get ECONNREFUSED.
* serial.c serial.h (serial_open serial_fdopen serial_close):
Allow users to open the same device multiple times. They all get
to share the same serial_t. This is about the only way to have
multiple active targets use the same device (for download and
debug).
* sparcl-tdep.c: Keep #include <unistd.h> away from GO32.
* target.c: Add `targetdebug' variable. If this is non-zero,
then a special target is put at the top of the target stack which
will cause all calls through the target vector to have their args
and results printed out.
Diffstat (limited to 'gdb/serial.h')
-rw-r--r-- | gdb/serial.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/serial.h b/gdb/serial.h index 2dbb1aa..8f4222f 100644 --- a/gdb/serial.h +++ b/gdb/serial.h @@ -36,10 +36,15 @@ struct _serial_t /* ser-unix.c termio{,s} only, we still need to wait for this many more seconds. */ int timeout_remaining; + char *name; /* The name of the device or host */ + struct _serial_t *next; /* Pointer to the next serial_t */ + int refcnt; /* Number of pointers to this block */ }; typedef struct _serial_t *serial_t; +serial_t scb_base; /* Pointer to list of scb's */ + struct serial_ops { char *name; struct serial_ops *next; |