diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-09-07 21:55:12 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-09-07 21:55:12 +0000 |
commit | 1f04aa626601752ffbb4af60a478a1f1e8e0ad6b (patch) | |
tree | 0bee548f4850736784ff8f2be9d79c130c1367b0 /gdb/tui/tui.c | |
parent | ada1953ecdd174aaad246792e88f09febe1e1106 (diff) | |
download | binutils-gdb-1f04aa626601752ffbb4af60a478a1f1e8e0ad6b.tar.gz |
2004-09-07 Andrew Cagney <cagney@gnu.org>
* vx-share/wait.h: Delete #ifdef USG.
* utils.c (request_quit): Ditto.
* tui/tui.c (tui_reset): Ditto.
* remote.c: Ditto.
* remote-sds.c: Ditto.
* remote-rdi.c: Ditto.
* mdebugread.c: Ditto.
* m68klinux-nat.c: Ditto.
* infttrace.c: Ditto.
* infptrace.c: Ditto.
* i386v-nat.c: Ditto.
* exec.c: Ditto.
* dbxread.c: Ditto.
* core-aout.c: Ditto.
Diffstat (limited to 'gdb/tui/tui.c')
-rw-r--r-- | gdb/tui/tui.c | 26 |
1 files changed, 2 insertions, 24 deletions
diff --git a/gdb/tui/tui.c b/gdb/tui/tui.c index d88998a9a80..e9a9b1b99f2 100644 --- a/gdb/tui/tui.c +++ b/gdb/tui/tui.c @@ -485,9 +485,9 @@ tui_reset (void) ** reset the teletype mode bits to a sensible state. ** Copied tset.c */ -#if ! defined (USG) && defined (TIOCGETC) +#if defined (TIOCGETC) struct tchars tbuf; -#endif /* !USG && TIOCGETC */ +#endif /* TIOCGETC */ #ifdef UCB_NTTY struct ltchars ltc; @@ -503,7 +503,6 @@ tui_reset (void) ioctl (FILEDES, TIOCSLTC, <c); } #endif /* UCB_NTTY */ -#ifndef USG #ifdef TIOCGETC ioctl (FILEDES, TIOCGETC, &tbuf); tbuf.t_intrc = CHK (tbuf.t_intrc, CTRL ('?')); @@ -520,27 +519,6 @@ tui_reset (void) #endif /* CBREAK */ | VTDELAY | ALLDELAY); mode.sg_flags |= XTABS | ECHO | CRMOD | ANYP; -#else /*USG */ - ioctl (FILEDES, TCGETA, &mode); - mode.c_cc[VINTR] = CHK (mode.c_cc[VINTR], CTRL ('?')); - mode.c_cc[VQUIT] = CHK (mode.c_cc[VQUIT], CTRL ('\\')); - mode.c_cc[VEOF] = CHK (mode.c_cc[VEOF], CTRL ('D')); - - mode.c_iflag &= ~(IGNBRK | PARMRK | INPCK | INLCR | IGNCR | IUCLC | IXOFF); - mode.c_iflag |= (BRKINT | ISTRIP | ICRNL | IXON); - mode.c_oflag &= ~(OLCUC | OCRNL | ONOCR | ONLRET | OFILL | OFDEL | - NLDLY | CRDLY | TABDLY | BSDLY | VTDLY | FFDLY); - mode.c_oflag |= (OPOST | ONLCR); - mode.c_cflag &= ~(CSIZE | PARODD | CLOCAL); -#ifndef hp9000s800 - mode.c_cflag |= (CS8 | CREAD); -#else /*hp9000s800 */ - mode.c_cflag |= (CS8 | CSTOPB | CREAD); -#endif /* hp9000s800 */ - mode.c_lflag &= ~(XCASE | ECHONL | NOFLSH); - mode.c_lflag |= (ISIG | ICANON | ECHO | ECHOK); - ioctl (FILEDES, TCSETAW, &mode); -#endif /* USG */ return; } |