diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-07-11 17:52:32 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-07-11 17:52:32 +0000 |
commit | 819cc324665b3ac1842b105d906308f7ab692a76 (patch) | |
tree | e3784018165b88ebe8ba4a17ac651815ac705f9d /gdb/remote-nindy.c | |
parent | 30120c466956627fbfdc64dde2e6415a9986e7d1 (diff) | |
download | gdb-819cc324665b3ac1842b105d906308f7ab692a76.zip gdb-819cc324665b3ac1842b105d906308f7ab692a76.tar.gz gdb-819cc324665b3ac1842b105d906308f7ab692a76.tar.bz2 |
s/typedef serial_t/struct serial */
Diffstat (limited to 'gdb/remote-nindy.c')
-rw-r--r-- | gdb/remote-nindy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-nindy.c b/gdb/remote-nindy.c index 9b8dfe8..0acd90d 100644 --- a/gdb/remote-nindy.c +++ b/gdb/remote-nindy.c @@ -141,7 +141,7 @@ char *nindy_ttyname; /* name of tty to talk to nindy on, or null */ #define FALSE 0 /* From nindy-share/nindy.c. */ -extern serial_t nindy_serial; +extern struct serial *nindy_serial; static int have_regs = 0; /* 1 iff regs read since i960 last halted */ static int regs_changed = 0; /* 1 iff regs were modified since last read */ @@ -277,7 +277,7 @@ nindy_resume (ptid_t ptid, int step, enum target_signal siggnal) struct clean_up_tty_args { serial_ttystate state; - serial_t serial; + struct serial *serial; }; static struct clean_up_tty_args tty_args; |