1993-04-06 07:50:54 +02:00
|
|
|
/* Serial interface for local (hardwired) serial ports on Un*x like systems
|
1994-02-24 13:40:39 +01:00
|
|
|
Copyright 1992, 1993, 1994 Free Software Foundation, Inc.
|
1993-04-06 07:50:54 +02:00
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
1995-08-02 05:41:12 +02:00
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
1993-04-06 07:50:54 +02:00
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include "serial.h"
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/types.h>
|
1995-09-29 01:14:01 +01:00
|
|
|
#include "terminal.h"
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
1993-04-06 07:50:54 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIOS
|
1993-05-29 03:33:36 +02:00
|
|
|
|
|
|
|
struct hardwire_ttystate
|
|
|
|
{
|
|
|
|
struct termios termios;
|
|
|
|
};
|
1993-07-19 20:51:00 +02:00
|
|
|
#endif /* termios */
|
1993-05-29 03:33:36 +02:00
|
|
|
|
1993-04-06 07:50:54 +02:00
|
|
|
#ifdef HAVE_TERMIO
|
1993-05-29 03:33:36 +02:00
|
|
|
|
1993-07-19 20:51:00 +02:00
|
|
|
/* It is believed that all systems which have added job control to SVR3
|
|
|
|
(e.g. sco) have also added termios. Even if not, trying to figure out
|
|
|
|
all the variations (TIOCGPGRP vs. TCGETPGRP, etc.) would be pretty
|
|
|
|
bewildering. So we don't attempt it. */
|
|
|
|
|
1993-05-29 03:33:36 +02:00
|
|
|
struct hardwire_ttystate
|
|
|
|
{
|
|
|
|
struct termio termio;
|
|
|
|
};
|
1993-07-19 20:51:00 +02:00
|
|
|
#endif /* termio */
|
1993-05-29 03:33:36 +02:00
|
|
|
|
1993-04-06 07:50:54 +02:00
|
|
|
#ifdef HAVE_SGTTY
|
1993-06-27 16:16:34 +02:00
|
|
|
/* Needed for the code which uses select(). We would include <sys/select.h>
|
|
|
|
too if it existed on all systems. */
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
1993-05-29 03:33:36 +02:00
|
|
|
struct hardwire_ttystate
|
|
|
|
{
|
|
|
|
struct sgttyb sgttyb;
|
* inftarg.c: Remove unused include of terminal.h.
* signals.h: Don't undefine signals anymore.
* main.c: Use job_control from serial.h.
* fork-child.c (fork_inferior): Use gdb_setpgid.
* serial.h, ser-unix.c, ser-go32.c: Provide gdb_setpgid.
* utils.c (quit): Use current_target->to_terminal_ours to figure
out whether we care about lack of job control, rather than __GO32__.
* utils.c: Include serial.h not terminal.h
(quit): Use job_control not TIOCGPGRP.
* terminal.h: Don't undefine TIOCGPGRP.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c: Add SERIAL_FLUSH_OUTPUT.
* utils.c (quit): Use it.
* serial.h: Add SERIAL_UN_FDOPEN.
* utils.c (quit): Use it.
* ser-unix.c: Add process group to ttystate.
[HAVE_SGTTY]: Add tchars, ltchars, and lmode to ttystate.
* inflow.c: Include serial.h not terminal.h.
Use serial.h stuff to replace most of the maze of #ifdef's.
* inflow.c, main.c, inferior.h: make gdb_has_a_terminal a function.
* serial.h: Document SERIAL_SET_TTY_STATE as being immediate.
* ser-unix.c: Use TIOCSETN not TIOCSETP so it is true.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c:
Add SERIAL_PRINT_TTY_STATE, SERIAL_NOFLUSH_SET_TTY_STATE, and
SERIAL_SET_PROCESS_GROUP.
* inflow.c: Use them.
* config/xm-svr4.h, config/rs6000/xm-rs6000.h, config/sparc/sun4os4.h:
Define HAVE_TERMIOS.
* Various: Remove all use of TIOC*_BROKEN.
1993-07-01 00:20:53 +02:00
|
|
|
struct tchars tc;
|
|
|
|
struct ltchars ltc;
|
|
|
|
/* Line discipline flags. */
|
|
|
|
int lmode;
|
1993-05-29 03:33:36 +02:00
|
|
|
};
|
1993-07-19 20:51:00 +02:00
|
|
|
#endif /* sgtty */
|
1993-04-06 07:50:54 +02:00
|
|
|
|
1993-05-04 04:22:14 +02:00
|
|
|
static int hardwire_open PARAMS ((serial_t scb, const char *name));
|
|
|
|
static void hardwire_raw PARAMS ((serial_t scb));
|
|
|
|
static int wait_for PARAMS ((serial_t scb, int timeout));
|
|
|
|
static int hardwire_readchar PARAMS ((serial_t scb, int timeout));
|
|
|
|
static int rate_to_code PARAMS ((int rate));
|
|
|
|
static int hardwire_setbaudrate PARAMS ((serial_t scb, int rate));
|
|
|
|
static int hardwire_write PARAMS ((serial_t scb, const char *str, int len));
|
|
|
|
static void hardwire_close PARAMS ((serial_t scb));
|
1993-05-29 03:33:36 +02:00
|
|
|
static int get_tty_state PARAMS ((serial_t scb, struct hardwire_ttystate *state));
|
|
|
|
static int set_tty_state PARAMS ((serial_t scb, struct hardwire_ttystate *state));
|
|
|
|
static serial_ttystate hardwire_get_tty_state PARAMS ((serial_t scb));
|
|
|
|
static int hardwire_set_tty_state PARAMS ((serial_t scb, serial_ttystate state));
|
1996-07-26 05:01:51 +02:00
|
|
|
static int hardwire_noflush_set_tty_state PARAMS ((serial_t, serial_ttystate,
|
|
|
|
serial_ttystate));
|
|
|
|
static void hardwire_print_tty_state PARAMS ((serial_t, serial_ttystate));
|
|
|
|
static int hardwire_flush_output PARAMS ((serial_t));
|
|
|
|
static int hardwire_flush_input PARAMS ((serial_t));
|
|
|
|
static int hardwire_send_break PARAMS ((serial_t));
|
|
|
|
static int hardwire_setstopbits PARAMS ((serial_t, int));
|
1993-05-04 04:22:14 +02:00
|
|
|
|
1993-04-06 07:50:54 +02:00
|
|
|
/* Open up a real live device for serial I/O */
|
|
|
|
|
|
|
|
static int
|
|
|
|
hardwire_open(scb, name)
|
|
|
|
serial_t scb;
|
|
|
|
const char *name;
|
|
|
|
{
|
|
|
|
scb->fd = open (name, O_RDWR);
|
|
|
|
if (scb->fd < 0)
|
1993-04-10 00:14:04 +02:00
|
|
|
return -1;
|
1993-04-06 07:50:54 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1993-05-29 03:33:36 +02:00
|
|
|
static int
|
|
|
|
get_tty_state(scb, state)
|
1993-04-06 07:50:54 +02:00
|
|
|
serial_t scb;
|
1993-05-29 03:33:36 +02:00
|
|
|
struct hardwire_ttystate *state;
|
1993-04-06 07:50:54 +02:00
|
|
|
{
|
|
|
|
#ifdef HAVE_TERMIOS
|
1993-08-13 23:48:39 +02:00
|
|
|
extern int errno;
|
* inftarg.c: Remove unused include of terminal.h.
* signals.h: Don't undefine signals anymore.
* main.c: Use job_control from serial.h.
* fork-child.c (fork_inferior): Use gdb_setpgid.
* serial.h, ser-unix.c, ser-go32.c: Provide gdb_setpgid.
* utils.c (quit): Use current_target->to_terminal_ours to figure
out whether we care about lack of job control, rather than __GO32__.
* utils.c: Include serial.h not terminal.h
(quit): Use job_control not TIOCGPGRP.
* terminal.h: Don't undefine TIOCGPGRP.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c: Add SERIAL_FLUSH_OUTPUT.
* utils.c (quit): Use it.
* serial.h: Add SERIAL_UN_FDOPEN.
* utils.c (quit): Use it.
* ser-unix.c: Add process group to ttystate.
[HAVE_SGTTY]: Add tchars, ltchars, and lmode to ttystate.
* inflow.c: Include serial.h not terminal.h.
Use serial.h stuff to replace most of the maze of #ifdef's.
* inflow.c, main.c, inferior.h: make gdb_has_a_terminal a function.
* serial.h: Document SERIAL_SET_TTY_STATE as being immediate.
* ser-unix.c: Use TIOCSETN not TIOCSETP so it is true.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c:
Add SERIAL_PRINT_TTY_STATE, SERIAL_NOFLUSH_SET_TTY_STATE, and
SERIAL_SET_PROCESS_GROUP.
* inflow.c: Use them.
* config/xm-svr4.h, config/rs6000/xm-rs6000.h, config/sparc/sun4os4.h:
Define HAVE_TERMIOS.
* Various: Remove all use of TIOC*_BROKEN.
1993-07-01 00:20:53 +02:00
|
|
|
|
|
|
|
if (tcgetattr(scb->fd, &state->termios) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
1993-05-29 03:33:36 +02:00
|
|
|
#endif
|
1993-04-06 07:50:54 +02:00
|
|
|
|
1993-05-29 03:33:36 +02:00
|
|
|
#ifdef HAVE_TERMIO
|
* inftarg.c: Remove unused include of terminal.h.
* signals.h: Don't undefine signals anymore.
* main.c: Use job_control from serial.h.
* fork-child.c (fork_inferior): Use gdb_setpgid.
* serial.h, ser-unix.c, ser-go32.c: Provide gdb_setpgid.
* utils.c (quit): Use current_target->to_terminal_ours to figure
out whether we care about lack of job control, rather than __GO32__.
* utils.c: Include serial.h not terminal.h
(quit): Use job_control not TIOCGPGRP.
* terminal.h: Don't undefine TIOCGPGRP.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c: Add SERIAL_FLUSH_OUTPUT.
* utils.c (quit): Use it.
* serial.h: Add SERIAL_UN_FDOPEN.
* utils.c (quit): Use it.
* ser-unix.c: Add process group to ttystate.
[HAVE_SGTTY]: Add tchars, ltchars, and lmode to ttystate.
* inflow.c: Include serial.h not terminal.h.
Use serial.h stuff to replace most of the maze of #ifdef's.
* inflow.c, main.c, inferior.h: make gdb_has_a_terminal a function.
* serial.h: Document SERIAL_SET_TTY_STATE as being immediate.
* ser-unix.c: Use TIOCSETN not TIOCSETP so it is true.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c:
Add SERIAL_PRINT_TTY_STATE, SERIAL_NOFLUSH_SET_TTY_STATE, and
SERIAL_SET_PROCESS_GROUP.
* inflow.c: Use them.
* config/xm-svr4.h, config/rs6000/xm-rs6000.h, config/sparc/sun4os4.h:
Define HAVE_TERMIOS.
* Various: Remove all use of TIOC*_BROKEN.
1993-07-01 00:20:53 +02:00
|
|
|
if (ioctl (scb->fd, TCGETA, &state->termio) < 0)
|
|
|
|
return -1;
|
1993-07-19 20:51:00 +02:00
|
|
|
return 0;
|
1993-05-29 03:33:36 +02:00
|
|
|
#endif
|
1993-04-06 07:50:54 +02:00
|
|
|
|
1993-05-29 03:33:36 +02:00
|
|
|
#ifdef HAVE_SGTTY
|
* inftarg.c: Remove unused include of terminal.h.
* signals.h: Don't undefine signals anymore.
* main.c: Use job_control from serial.h.
* fork-child.c (fork_inferior): Use gdb_setpgid.
* serial.h, ser-unix.c, ser-go32.c: Provide gdb_setpgid.
* utils.c (quit): Use current_target->to_terminal_ours to figure
out whether we care about lack of job control, rather than __GO32__.
* utils.c: Include serial.h not terminal.h
(quit): Use job_control not TIOCGPGRP.
* terminal.h: Don't undefine TIOCGPGRP.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c: Add SERIAL_FLUSH_OUTPUT.
* utils.c (quit): Use it.
* serial.h: Add SERIAL_UN_FDOPEN.
* utils.c (quit): Use it.
* ser-unix.c: Add process group to ttystate.
[HAVE_SGTTY]: Add tchars, ltchars, and lmode to ttystate.
* inflow.c: Include serial.h not terminal.h.
Use serial.h stuff to replace most of the maze of #ifdef's.
* inflow.c, main.c, inferior.h: make gdb_has_a_terminal a function.
* serial.h: Document SERIAL_SET_TTY_STATE as being immediate.
* ser-unix.c: Use TIOCSETN not TIOCSETP so it is true.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c:
Add SERIAL_PRINT_TTY_STATE, SERIAL_NOFLUSH_SET_TTY_STATE, and
SERIAL_SET_PROCESS_GROUP.
* inflow.c: Use them.
* config/xm-svr4.h, config/rs6000/xm-rs6000.h, config/sparc/sun4os4.h:
Define HAVE_TERMIOS.
* Various: Remove all use of TIOC*_BROKEN.
1993-07-01 00:20:53 +02:00
|
|
|
if (ioctl (scb->fd, TIOCGETP, &state->sgttyb) < 0)
|
|
|
|
return -1;
|
|
|
|
if (ioctl (scb->fd, TIOCGETC, &state->tc) < 0)
|
|
|
|
return -1;
|
|
|
|
if (ioctl (scb->fd, TIOCGLTC, &state->ltc) < 0)
|
|
|
|
return -1;
|
|
|
|
if (ioctl (scb->fd, TIOCLGET, &state->lmode) < 0)
|
|
|
|
return -1;
|
|
|
|
|
1993-10-08 23:18:27 +01:00
|
|
|
return 0;
|
1993-05-29 03:33:36 +02:00
|
|
|
#endif
|
|
|
|
}
|
1993-04-06 07:50:54 +02:00
|
|
|
|
1993-05-29 03:33:36 +02:00
|
|
|
static int
|
|
|
|
set_tty_state(scb, state)
|
|
|
|
serial_t scb;
|
|
|
|
struct hardwire_ttystate *state;
|
|
|
|
{
|
|
|
|
#ifdef HAVE_TERMIOS
|
* inftarg.c: Remove unused include of terminal.h.
* signals.h: Don't undefine signals anymore.
* main.c: Use job_control from serial.h.
* fork-child.c (fork_inferior): Use gdb_setpgid.
* serial.h, ser-unix.c, ser-go32.c: Provide gdb_setpgid.
* utils.c (quit): Use current_target->to_terminal_ours to figure
out whether we care about lack of job control, rather than __GO32__.
* utils.c: Include serial.h not terminal.h
(quit): Use job_control not TIOCGPGRP.
* terminal.h: Don't undefine TIOCGPGRP.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c: Add SERIAL_FLUSH_OUTPUT.
* utils.c (quit): Use it.
* serial.h: Add SERIAL_UN_FDOPEN.
* utils.c (quit): Use it.
* ser-unix.c: Add process group to ttystate.
[HAVE_SGTTY]: Add tchars, ltchars, and lmode to ttystate.
* inflow.c: Include serial.h not terminal.h.
Use serial.h stuff to replace most of the maze of #ifdef's.
* inflow.c, main.c, inferior.h: make gdb_has_a_terminal a function.
* serial.h: Document SERIAL_SET_TTY_STATE as being immediate.
* ser-unix.c: Use TIOCSETN not TIOCSETP so it is true.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c:
Add SERIAL_PRINT_TTY_STATE, SERIAL_NOFLUSH_SET_TTY_STATE, and
SERIAL_SET_PROCESS_GROUP.
* inflow.c: Use them.
* config/xm-svr4.h, config/rs6000/xm-rs6000.h, config/sparc/sun4os4.h:
Define HAVE_TERMIOS.
* Various: Remove all use of TIOC*_BROKEN.
1993-07-01 00:20:53 +02:00
|
|
|
if (tcsetattr(scb->fd, TCSANOW, &state->termios) < 0)
|
|
|
|
return -1;
|
|
|
|
|
1993-10-08 23:18:27 +01:00
|
|
|
return 0;
|
1993-04-06 07:50:54 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIO
|
* inftarg.c: Remove unused include of terminal.h.
* signals.h: Don't undefine signals anymore.
* main.c: Use job_control from serial.h.
* fork-child.c (fork_inferior): Use gdb_setpgid.
* serial.h, ser-unix.c, ser-go32.c: Provide gdb_setpgid.
* utils.c (quit): Use current_target->to_terminal_ours to figure
out whether we care about lack of job control, rather than __GO32__.
* utils.c: Include serial.h not terminal.h
(quit): Use job_control not TIOCGPGRP.
* terminal.h: Don't undefine TIOCGPGRP.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c: Add SERIAL_FLUSH_OUTPUT.
* utils.c (quit): Use it.
* serial.h: Add SERIAL_UN_FDOPEN.
* utils.c (quit): Use it.
* ser-unix.c: Add process group to ttystate.
[HAVE_SGTTY]: Add tchars, ltchars, and lmode to ttystate.
* inflow.c: Include serial.h not terminal.h.
Use serial.h stuff to replace most of the maze of #ifdef's.
* inflow.c, main.c, inferior.h: make gdb_has_a_terminal a function.
* serial.h: Document SERIAL_SET_TTY_STATE as being immediate.
* ser-unix.c: Use TIOCSETN not TIOCSETP so it is true.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c:
Add SERIAL_PRINT_TTY_STATE, SERIAL_NOFLUSH_SET_TTY_STATE, and
SERIAL_SET_PROCESS_GROUP.
* inflow.c: Use them.
* config/xm-svr4.h, config/rs6000/xm-rs6000.h, config/sparc/sun4os4.h:
Define HAVE_TERMIOS.
* Various: Remove all use of TIOC*_BROKEN.
1993-07-01 00:20:53 +02:00
|
|
|
if (ioctl (scb->fd, TCSETA, &state->termio) < 0)
|
|
|
|
return -1;
|
|
|
|
return 0;
|
1993-05-29 03:33:36 +02:00
|
|
|
#endif
|
1993-04-06 07:50:54 +02:00
|
|
|
|
1993-05-29 03:33:36 +02:00
|
|
|
#ifdef HAVE_SGTTY
|
* inftarg.c: Remove unused include of terminal.h.
* signals.h: Don't undefine signals anymore.
* main.c: Use job_control from serial.h.
* fork-child.c (fork_inferior): Use gdb_setpgid.
* serial.h, ser-unix.c, ser-go32.c: Provide gdb_setpgid.
* utils.c (quit): Use current_target->to_terminal_ours to figure
out whether we care about lack of job control, rather than __GO32__.
* utils.c: Include serial.h not terminal.h
(quit): Use job_control not TIOCGPGRP.
* terminal.h: Don't undefine TIOCGPGRP.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c: Add SERIAL_FLUSH_OUTPUT.
* utils.c (quit): Use it.
* serial.h: Add SERIAL_UN_FDOPEN.
* utils.c (quit): Use it.
* ser-unix.c: Add process group to ttystate.
[HAVE_SGTTY]: Add tchars, ltchars, and lmode to ttystate.
* inflow.c: Include serial.h not terminal.h.
Use serial.h stuff to replace most of the maze of #ifdef's.
* inflow.c, main.c, inferior.h: make gdb_has_a_terminal a function.
* serial.h: Document SERIAL_SET_TTY_STATE as being immediate.
* ser-unix.c: Use TIOCSETN not TIOCSETP so it is true.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c:
Add SERIAL_PRINT_TTY_STATE, SERIAL_NOFLUSH_SET_TTY_STATE, and
SERIAL_SET_PROCESS_GROUP.
* inflow.c: Use them.
* config/xm-svr4.h, config/rs6000/xm-rs6000.h, config/sparc/sun4os4.h:
Define HAVE_TERMIOS.
* Various: Remove all use of TIOC*_BROKEN.
1993-07-01 00:20:53 +02:00
|
|
|
if (ioctl (scb->fd, TIOCSETN, &state->sgttyb) < 0)
|
|
|
|
return -1;
|
1993-12-07 01:41:42 +01:00
|
|
|
if (ioctl (scb->fd, TIOCSETC, &state->tc) < 0)
|
|
|
|
return -1;
|
|
|
|
if (ioctl (scb->fd, TIOCSLTC, &state->ltc) < 0)
|
|
|
|
return -1;
|
|
|
|
if (ioctl (scb->fd, TIOCLSET, &state->lmode) < 0)
|
|
|
|
return -1;
|
* inftarg.c: Remove unused include of terminal.h.
* signals.h: Don't undefine signals anymore.
* main.c: Use job_control from serial.h.
* fork-child.c (fork_inferior): Use gdb_setpgid.
* serial.h, ser-unix.c, ser-go32.c: Provide gdb_setpgid.
* utils.c (quit): Use current_target->to_terminal_ours to figure
out whether we care about lack of job control, rather than __GO32__.
* utils.c: Include serial.h not terminal.h
(quit): Use job_control not TIOCGPGRP.
* terminal.h: Don't undefine TIOCGPGRP.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c: Add SERIAL_FLUSH_OUTPUT.
* utils.c (quit): Use it.
* serial.h: Add SERIAL_UN_FDOPEN.
* utils.c (quit): Use it.
* ser-unix.c: Add process group to ttystate.
[HAVE_SGTTY]: Add tchars, ltchars, and lmode to ttystate.
* inflow.c: Include serial.h not terminal.h.
Use serial.h stuff to replace most of the maze of #ifdef's.
* inflow.c, main.c, inferior.h: make gdb_has_a_terminal a function.
* serial.h: Document SERIAL_SET_TTY_STATE as being immediate.
* ser-unix.c: Use TIOCSETN not TIOCSETP so it is true.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c:
Add SERIAL_PRINT_TTY_STATE, SERIAL_NOFLUSH_SET_TTY_STATE, and
SERIAL_SET_PROCESS_GROUP.
* inflow.c: Use them.
* config/xm-svr4.h, config/rs6000/xm-rs6000.h, config/sparc/sun4os4.h:
Define HAVE_TERMIOS.
* Various: Remove all use of TIOC*_BROKEN.
1993-07-01 00:20:53 +02:00
|
|
|
|
1993-10-08 23:18:27 +01:00
|
|
|
return 0;
|
1993-05-29 03:33:36 +02:00
|
|
|
#endif
|
|
|
|
}
|
1993-04-06 07:50:54 +02:00
|
|
|
|
1993-05-29 03:33:36 +02:00
|
|
|
static serial_ttystate
|
|
|
|
hardwire_get_tty_state(scb)
|
|
|
|
serial_t scb;
|
|
|
|
{
|
|
|
|
struct hardwire_ttystate *state;
|
1993-04-06 07:50:54 +02:00
|
|
|
|
1993-05-29 03:33:36 +02:00
|
|
|
state = (struct hardwire_ttystate *)xmalloc(sizeof *state);
|
1993-04-06 07:50:54 +02:00
|
|
|
|
1993-05-29 03:33:36 +02:00
|
|
|
if (get_tty_state(scb, state))
|
|
|
|
return NULL;
|
1993-04-06 07:50:54 +02:00
|
|
|
|
1993-05-29 03:33:36 +02:00
|
|
|
return (serial_ttystate)state;
|
|
|
|
}
|
1993-04-06 07:50:54 +02:00
|
|
|
|
1993-05-29 03:33:36 +02:00
|
|
|
static int
|
|
|
|
hardwire_set_tty_state(scb, ttystate)
|
|
|
|
serial_t scb;
|
|
|
|
serial_ttystate ttystate;
|
|
|
|
{
|
|
|
|
struct hardwire_ttystate *state;
|
1993-04-06 07:50:54 +02:00
|
|
|
|
1993-05-29 03:33:36 +02:00
|
|
|
state = (struct hardwire_ttystate *)ttystate;
|
|
|
|
|
|
|
|
return set_tty_state(scb, state);
|
|
|
|
}
|
|
|
|
|
* inftarg.c: Remove unused include of terminal.h.
* signals.h: Don't undefine signals anymore.
* main.c: Use job_control from serial.h.
* fork-child.c (fork_inferior): Use gdb_setpgid.
* serial.h, ser-unix.c, ser-go32.c: Provide gdb_setpgid.
* utils.c (quit): Use current_target->to_terminal_ours to figure
out whether we care about lack of job control, rather than __GO32__.
* utils.c: Include serial.h not terminal.h
(quit): Use job_control not TIOCGPGRP.
* terminal.h: Don't undefine TIOCGPGRP.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c: Add SERIAL_FLUSH_OUTPUT.
* utils.c (quit): Use it.
* serial.h: Add SERIAL_UN_FDOPEN.
* utils.c (quit): Use it.
* ser-unix.c: Add process group to ttystate.
[HAVE_SGTTY]: Add tchars, ltchars, and lmode to ttystate.
* inflow.c: Include serial.h not terminal.h.
Use serial.h stuff to replace most of the maze of #ifdef's.
* inflow.c, main.c, inferior.h: make gdb_has_a_terminal a function.
* serial.h: Document SERIAL_SET_TTY_STATE as being immediate.
* ser-unix.c: Use TIOCSETN not TIOCSETP so it is true.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c:
Add SERIAL_PRINT_TTY_STATE, SERIAL_NOFLUSH_SET_TTY_STATE, and
SERIAL_SET_PROCESS_GROUP.
* inflow.c: Use them.
* config/xm-svr4.h, config/rs6000/xm-rs6000.h, config/sparc/sun4os4.h:
Define HAVE_TERMIOS.
* Various: Remove all use of TIOC*_BROKEN.
1993-07-01 00:20:53 +02:00
|
|
|
static int
|
|
|
|
hardwire_noflush_set_tty_state (scb, new_ttystate, old_ttystate)
|
|
|
|
serial_t scb;
|
|
|
|
serial_ttystate new_ttystate;
|
|
|
|
serial_ttystate old_ttystate;
|
|
|
|
{
|
1993-07-02 04:50:43 +02:00
|
|
|
struct hardwire_ttystate new_state;
|
* dache.c (struct dcache_block): Change data member from unsigned char
to char, since everything passed in and out of dcache is char or casted
to appropriate type anyway.
(dcache_alloc): Move assignment of db out of test and combine separate
tests into if-else.
(dcache_peek_byte): Change ptr from unsigned char* to char*.
(dcache_peek_byte): Remove now unnecessary cast in read_memory call.
(dcache_peek): Change cast of incoming data arg.
(dcache_poke): Change cast of addr of incoming data arg.
(dcache_info): Mask data passed to printf_filtered to lsbyte only.
(dcache_info): Change printf_filtered arg from "% 2x" to " %2x".
* target.c (debug_to_thread_alive): Change return type to int and
return zero, for type compatibility with other *_thread_alive funcs.
(cleanup_target): Change cast of ignore function to match type of the
to_thread_alive member.
* defs.h (error_hook): Add ATTR_NORETURN.
* defs.h (NORETURN, ATTR_NORETURN): Switch from volatile to
__attribute__ method with gcc 2.7, to avoid gcc 2.6.3 bug.
* remote.c (remote_wait): Cast first arg to strtol, strchr, and strncmp
to "const char *" from "unsigned char *".
(remote_wait): Cast arg to putpkt and strcpy from "unsigned char *" to
"char *".
(remote_wait): Change printf format for long arg from "%d" to "%ld".
(getpkt): Remove unused variable "bp".
(remote_fetch_word, remote_store_word): Ifdef out apparently unused
functions.
* breakpoint.c (watchpoint_check): Removed unused variables
"saved_level" and "saved_frame".
* valops.c (value_arg_coerce): Add other enum TYPE_CODE_* and
default cases to switch for completeness.
* infrun.c (wait_for_inferior): Enclose "have_waited" label
in #ifdef that matches the one in which it is referenced.
* ser-unix.c (hardwire_noflush_set_tty_state): Enclose otherwise
unused variable "state" in #ifdef that matches one in which it is
referenced.
* eval.c (evaluate_subexp_standard): Remove unused variable "var".
* eval.c (evaluate_subexp_standard): Remove unused variable "tmp_symbol".
* valarith.c (value_subscript): Remove unused variable "lowerbound",
which is redeclared in a nested scope prior to use.
* printcmd.c (print_frame_nameless_args): Use "%ld" to print long
arg, not "%d".
* {mem-break.c, remote-pa.c, remote.c, saber.suppress}:
Remove unused static var "check_break_insn_size".
* buildsym.c (finish_block): Add other enum LOC_* and default
cases to switch for completeness.
ch-lang.c (type_lower_upper): Removed unused label "retry".
Add other enum TYPE_* and default cases to switch for completeness.
* f-typeprint.c (f_type_print_args): Ifdef out unused function
that may be used someday when Fortran support is complete.
* ch-valprint.c (chill_print_type_scalar): Add other enum
TYPE_* and default cases to switch for completeness.
(chill_val_print): Remove unused local var "high_bound" that
is redeclared in a nested scope prior to use.
(chill_var_print): Use "%ld" to print long arg, not "%d".
* regex.c (re_compile_fastmap, re_match_2): Add remaining enum types
and default to switches for completeness.
* minsyms.c (lookup_minimal_symbol_text): Delete unused variable
"trampoline_symbol".
(prim_record_minimal_symbol_and_info): Return NULL rather than trash.
* elfread.c (elf_symtab_read): Don't dereference NULL returns from
record_minimal_symbol_and_info.
* f-lang.c (saved_function_list_end): Ifdef out unused variable
that may be used someday.
* f-valprint.c (f_val_print): Remove unused local variable "straddr".
1995-07-18 06:38:06 +02:00
|
|
|
#ifdef HAVE_SGTTY
|
* inftarg.c: Remove unused include of terminal.h.
* signals.h: Don't undefine signals anymore.
* main.c: Use job_control from serial.h.
* fork-child.c (fork_inferior): Use gdb_setpgid.
* serial.h, ser-unix.c, ser-go32.c: Provide gdb_setpgid.
* utils.c (quit): Use current_target->to_terminal_ours to figure
out whether we care about lack of job control, rather than __GO32__.
* utils.c: Include serial.h not terminal.h
(quit): Use job_control not TIOCGPGRP.
* terminal.h: Don't undefine TIOCGPGRP.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c: Add SERIAL_FLUSH_OUTPUT.
* utils.c (quit): Use it.
* serial.h: Add SERIAL_UN_FDOPEN.
* utils.c (quit): Use it.
* ser-unix.c: Add process group to ttystate.
[HAVE_SGTTY]: Add tchars, ltchars, and lmode to ttystate.
* inflow.c: Include serial.h not terminal.h.
Use serial.h stuff to replace most of the maze of #ifdef's.
* inflow.c, main.c, inferior.h: make gdb_has_a_terminal a function.
* serial.h: Document SERIAL_SET_TTY_STATE as being immediate.
* ser-unix.c: Use TIOCSETN not TIOCSETP so it is true.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c:
Add SERIAL_PRINT_TTY_STATE, SERIAL_NOFLUSH_SET_TTY_STATE, and
SERIAL_SET_PROCESS_GROUP.
* inflow.c: Use them.
* config/xm-svr4.h, config/rs6000/xm-rs6000.h, config/sparc/sun4os4.h:
Define HAVE_TERMIOS.
* Various: Remove all use of TIOC*_BROKEN.
1993-07-01 00:20:53 +02:00
|
|
|
struct hardwire_ttystate *state = (struct hardwire_ttystate *) old_ttystate;
|
* dache.c (struct dcache_block): Change data member from unsigned char
to char, since everything passed in and out of dcache is char or casted
to appropriate type anyway.
(dcache_alloc): Move assignment of db out of test and combine separate
tests into if-else.
(dcache_peek_byte): Change ptr from unsigned char* to char*.
(dcache_peek_byte): Remove now unnecessary cast in read_memory call.
(dcache_peek): Change cast of incoming data arg.
(dcache_poke): Change cast of addr of incoming data arg.
(dcache_info): Mask data passed to printf_filtered to lsbyte only.
(dcache_info): Change printf_filtered arg from "% 2x" to " %2x".
* target.c (debug_to_thread_alive): Change return type to int and
return zero, for type compatibility with other *_thread_alive funcs.
(cleanup_target): Change cast of ignore function to match type of the
to_thread_alive member.
* defs.h (error_hook): Add ATTR_NORETURN.
* defs.h (NORETURN, ATTR_NORETURN): Switch from volatile to
__attribute__ method with gcc 2.7, to avoid gcc 2.6.3 bug.
* remote.c (remote_wait): Cast first arg to strtol, strchr, and strncmp
to "const char *" from "unsigned char *".
(remote_wait): Cast arg to putpkt and strcpy from "unsigned char *" to
"char *".
(remote_wait): Change printf format for long arg from "%d" to "%ld".
(getpkt): Remove unused variable "bp".
(remote_fetch_word, remote_store_word): Ifdef out apparently unused
functions.
* breakpoint.c (watchpoint_check): Removed unused variables
"saved_level" and "saved_frame".
* valops.c (value_arg_coerce): Add other enum TYPE_CODE_* and
default cases to switch for completeness.
* infrun.c (wait_for_inferior): Enclose "have_waited" label
in #ifdef that matches the one in which it is referenced.
* ser-unix.c (hardwire_noflush_set_tty_state): Enclose otherwise
unused variable "state" in #ifdef that matches one in which it is
referenced.
* eval.c (evaluate_subexp_standard): Remove unused variable "var".
* eval.c (evaluate_subexp_standard): Remove unused variable "tmp_symbol".
* valarith.c (value_subscript): Remove unused variable "lowerbound",
which is redeclared in a nested scope prior to use.
* printcmd.c (print_frame_nameless_args): Use "%ld" to print long
arg, not "%d".
* {mem-break.c, remote-pa.c, remote.c, saber.suppress}:
Remove unused static var "check_break_insn_size".
* buildsym.c (finish_block): Add other enum LOC_* and default
cases to switch for completeness.
ch-lang.c (type_lower_upper): Removed unused label "retry".
Add other enum TYPE_* and default cases to switch for completeness.
* f-typeprint.c (f_type_print_args): Ifdef out unused function
that may be used someday when Fortran support is complete.
* ch-valprint.c (chill_print_type_scalar): Add other enum
TYPE_* and default cases to switch for completeness.
(chill_val_print): Remove unused local var "high_bound" that
is redeclared in a nested scope prior to use.
(chill_var_print): Use "%ld" to print long arg, not "%d".
* regex.c (re_compile_fastmap, re_match_2): Add remaining enum types
and default to switches for completeness.
* minsyms.c (lookup_minimal_symbol_text): Delete unused variable
"trampoline_symbol".
(prim_record_minimal_symbol_and_info): Return NULL rather than trash.
* elfread.c (elf_symtab_read): Don't dereference NULL returns from
record_minimal_symbol_and_info.
* f-lang.c (saved_function_list_end): Ifdef out unused variable
that may be used someday.
* f-valprint.c (f_val_print): Remove unused local variable "straddr".
1995-07-18 06:38:06 +02:00
|
|
|
#endif
|
* inftarg.c: Remove unused include of terminal.h.
* signals.h: Don't undefine signals anymore.
* main.c: Use job_control from serial.h.
* fork-child.c (fork_inferior): Use gdb_setpgid.
* serial.h, ser-unix.c, ser-go32.c: Provide gdb_setpgid.
* utils.c (quit): Use current_target->to_terminal_ours to figure
out whether we care about lack of job control, rather than __GO32__.
* utils.c: Include serial.h not terminal.h
(quit): Use job_control not TIOCGPGRP.
* terminal.h: Don't undefine TIOCGPGRP.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c: Add SERIAL_FLUSH_OUTPUT.
* utils.c (quit): Use it.
* serial.h: Add SERIAL_UN_FDOPEN.
* utils.c (quit): Use it.
* ser-unix.c: Add process group to ttystate.
[HAVE_SGTTY]: Add tchars, ltchars, and lmode to ttystate.
* inflow.c: Include serial.h not terminal.h.
Use serial.h stuff to replace most of the maze of #ifdef's.
* inflow.c, main.c, inferior.h: make gdb_has_a_terminal a function.
* serial.h: Document SERIAL_SET_TTY_STATE as being immediate.
* ser-unix.c: Use TIOCSETN not TIOCSETP so it is true.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c:
Add SERIAL_PRINT_TTY_STATE, SERIAL_NOFLUSH_SET_TTY_STATE, and
SERIAL_SET_PROCESS_GROUP.
* inflow.c: Use them.
* config/xm-svr4.h, config/rs6000/xm-rs6000.h, config/sparc/sun4os4.h:
Define HAVE_TERMIOS.
* Various: Remove all use of TIOC*_BROKEN.
1993-07-01 00:20:53 +02:00
|
|
|
|
1993-07-02 04:50:43 +02:00
|
|
|
new_state = *(struct hardwire_ttystate *)new_ttystate;
|
|
|
|
|
1994-01-18 05:29:34 +01:00
|
|
|
/* Don't change in or out of raw mode; we don't want to flush input.
|
|
|
|
termio and termios have no such restriction; for them flushing input
|
|
|
|
is separate from setting the attributes. */
|
* inftarg.c: Remove unused include of terminal.h.
* signals.h: Don't undefine signals anymore.
* main.c: Use job_control from serial.h.
* fork-child.c (fork_inferior): Use gdb_setpgid.
* serial.h, ser-unix.c, ser-go32.c: Provide gdb_setpgid.
* utils.c (quit): Use current_target->to_terminal_ours to figure
out whether we care about lack of job control, rather than __GO32__.
* utils.c: Include serial.h not terminal.h
(quit): Use job_control not TIOCGPGRP.
* terminal.h: Don't undefine TIOCGPGRP.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c: Add SERIAL_FLUSH_OUTPUT.
* utils.c (quit): Use it.
* serial.h: Add SERIAL_UN_FDOPEN.
* utils.c (quit): Use it.
* ser-unix.c: Add process group to ttystate.
[HAVE_SGTTY]: Add tchars, ltchars, and lmode to ttystate.
* inflow.c: Include serial.h not terminal.h.
Use serial.h stuff to replace most of the maze of #ifdef's.
* inflow.c, main.c, inferior.h: make gdb_has_a_terminal a function.
* serial.h: Document SERIAL_SET_TTY_STATE as being immediate.
* ser-unix.c: Use TIOCSETN not TIOCSETP so it is true.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c:
Add SERIAL_PRINT_TTY_STATE, SERIAL_NOFLUSH_SET_TTY_STATE, and
SERIAL_SET_PROCESS_GROUP.
* inflow.c: Use them.
* config/xm-svr4.h, config/rs6000/xm-rs6000.h, config/sparc/sun4os4.h:
Define HAVE_TERMIOS.
* Various: Remove all use of TIOC*_BROKEN.
1993-07-01 00:20:53 +02:00
|
|
|
|
|
|
|
#ifdef HAVE_SGTTY
|
|
|
|
if (state->sgttyb.sg_flags & RAW)
|
|
|
|
new_state.sgttyb.sg_flags |= RAW;
|
|
|
|
else
|
|
|
|
new_state.sgttyb.sg_flags &= ~RAW;
|
|
|
|
|
|
|
|
/* I'm not sure whether this is necessary; the manpage just mentions
|
|
|
|
RAW not CBREAK. */
|
|
|
|
if (state->sgttyb.sg_flags & CBREAK)
|
|
|
|
new_state.sgttyb.sg_flags |= CBREAK;
|
|
|
|
else
|
|
|
|
new_state.sgttyb.sg_flags &= ~CBREAK;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return set_tty_state (scb, &new_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
hardwire_print_tty_state (scb, ttystate)
|
|
|
|
serial_t scb;
|
|
|
|
serial_ttystate ttystate;
|
|
|
|
{
|
|
|
|
struct hardwire_ttystate *state = (struct hardwire_ttystate *) ttystate;
|
|
|
|
int i;
|
|
|
|
|
1993-07-19 20:51:00 +02:00
|
|
|
#ifdef HAVE_TERMIOS
|
* inftarg.c: Remove unused include of terminal.h.
* signals.h: Don't undefine signals anymore.
* main.c: Use job_control from serial.h.
* fork-child.c (fork_inferior): Use gdb_setpgid.
* serial.h, ser-unix.c, ser-go32.c: Provide gdb_setpgid.
* utils.c (quit): Use current_target->to_terminal_ours to figure
out whether we care about lack of job control, rather than __GO32__.
* utils.c: Include serial.h not terminal.h
(quit): Use job_control not TIOCGPGRP.
* terminal.h: Don't undefine TIOCGPGRP.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c: Add SERIAL_FLUSH_OUTPUT.
* utils.c (quit): Use it.
* serial.h: Add SERIAL_UN_FDOPEN.
* utils.c (quit): Use it.
* ser-unix.c: Add process group to ttystate.
[HAVE_SGTTY]: Add tchars, ltchars, and lmode to ttystate.
* inflow.c: Include serial.h not terminal.h.
Use serial.h stuff to replace most of the maze of #ifdef's.
* inflow.c, main.c, inferior.h: make gdb_has_a_terminal a function.
* serial.h: Document SERIAL_SET_TTY_STATE as being immediate.
* ser-unix.c: Use TIOCSETN not TIOCSETP so it is true.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c:
Add SERIAL_PRINT_TTY_STATE, SERIAL_NOFLUSH_SET_TTY_STATE, and
SERIAL_SET_PROCESS_GROUP.
* inflow.c: Use them.
* config/xm-svr4.h, config/rs6000/xm-rs6000.h, config/sparc/sun4os4.h:
Define HAVE_TERMIOS.
* Various: Remove all use of TIOC*_BROKEN.
1993-07-01 00:20:53 +02:00
|
|
|
printf_filtered ("c_iflag = 0x%x, c_oflag = 0x%x,\n",
|
|
|
|
state->termios.c_iflag, state->termios.c_oflag);
|
1993-07-01 20:22:02 +02:00
|
|
|
printf_filtered ("c_cflag = 0x%x, c_lflag = 0x%x\n",
|
|
|
|
state->termios.c_cflag, state->termios.c_lflag);
|
|
|
|
#if 0
|
|
|
|
/* This not in POSIX, and is not really documented by those systems
|
|
|
|
which have it (at least not Sun). */
|
|
|
|
printf_filtered ("c_line = 0x%x.\n", state->termios.c_line);
|
|
|
|
#endif
|
* inftarg.c: Remove unused include of terminal.h.
* signals.h: Don't undefine signals anymore.
* main.c: Use job_control from serial.h.
* fork-child.c (fork_inferior): Use gdb_setpgid.
* serial.h, ser-unix.c, ser-go32.c: Provide gdb_setpgid.
* utils.c (quit): Use current_target->to_terminal_ours to figure
out whether we care about lack of job control, rather than __GO32__.
* utils.c: Include serial.h not terminal.h
(quit): Use job_control not TIOCGPGRP.
* terminal.h: Don't undefine TIOCGPGRP.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c: Add SERIAL_FLUSH_OUTPUT.
* utils.c (quit): Use it.
* serial.h: Add SERIAL_UN_FDOPEN.
* utils.c (quit): Use it.
* ser-unix.c: Add process group to ttystate.
[HAVE_SGTTY]: Add tchars, ltchars, and lmode to ttystate.
* inflow.c: Include serial.h not terminal.h.
Use serial.h stuff to replace most of the maze of #ifdef's.
* inflow.c, main.c, inferior.h: make gdb_has_a_terminal a function.
* serial.h: Document SERIAL_SET_TTY_STATE as being immediate.
* ser-unix.c: Use TIOCSETN not TIOCSETP so it is true.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c:
Add SERIAL_PRINT_TTY_STATE, SERIAL_NOFLUSH_SET_TTY_STATE, and
SERIAL_SET_PROCESS_GROUP.
* inflow.c: Use them.
* config/xm-svr4.h, config/rs6000/xm-rs6000.h, config/sparc/sun4os4.h:
Define HAVE_TERMIOS.
* Various: Remove all use of TIOC*_BROKEN.
1993-07-01 00:20:53 +02:00
|
|
|
printf_filtered ("c_cc: ");
|
|
|
|
for (i = 0; i < NCCS; i += 1)
|
|
|
|
printf_filtered ("0x%x ", state->termios.c_cc[i]);
|
|
|
|
printf_filtered ("\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIO
|
|
|
|
printf_filtered ("c_iflag = 0x%x, c_oflag = 0x%x,\n",
|
|
|
|
state->termio.c_iflag, state->termio.c_oflag);
|
|
|
|
printf_filtered ("c_cflag = 0x%x, c_lflag = 0x%x, c_line = 0x%x.\n",
|
|
|
|
state->termio.c_cflag, state->termio.c_lflag,
|
|
|
|
state->termio.c_line);
|
|
|
|
printf_filtered ("c_cc: ");
|
|
|
|
for (i = 0; i < NCC; i += 1)
|
|
|
|
printf_filtered ("0x%x ", state->termio.c_cc[i]);
|
|
|
|
printf_filtered ("\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_SGTTY
|
|
|
|
printf_filtered ("sgttyb.sg_flags = 0x%x.\n", state->sgttyb.sg_flags);
|
|
|
|
|
|
|
|
printf_filtered ("tchars: ");
|
|
|
|
for (i = 0; i < (int)sizeof (struct tchars); i++)
|
|
|
|
printf_filtered ("0x%x ", ((unsigned char *)&state->tc)[i]);
|
|
|
|
printf_filtered ("\n");
|
|
|
|
|
|
|
|
printf_filtered ("ltchars: ");
|
|
|
|
for (i = 0; i < (int)sizeof (struct ltchars); i++)
|
|
|
|
printf_filtered ("0x%x ", ((unsigned char *)&state->ltc)[i]);
|
|
|
|
printf_filtered ("\n");
|
|
|
|
|
|
|
|
printf_filtered ("lmode: 0x%x\n", state->lmode);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
hardwire_flush_output (scb)
|
|
|
|
serial_t scb;
|
|
|
|
{
|
|
|
|
#ifdef HAVE_TERMIOS
|
|
|
|
return tcflush (scb->fd, TCOFLUSH);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIO
|
|
|
|
return ioctl (scb->fd, TCFLSH, 1);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_SGTTY
|
|
|
|
/* This flushes both input and output, but we can't do better. */
|
|
|
|
return ioctl (scb->fd, TIOCFLUSH, 0);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
1993-07-28 08:45:35 +02:00
|
|
|
static int
|
|
|
|
hardwire_flush_input (scb)
|
|
|
|
serial_t scb;
|
|
|
|
{
|
1995-09-29 01:14:01 +01:00
|
|
|
scb->bufcnt = 0;
|
|
|
|
scb->bufp = scb->buf;
|
|
|
|
|
1993-07-28 08:45:35 +02:00
|
|
|
#ifdef HAVE_TERMIOS
|
|
|
|
return tcflush (scb->fd, TCIFLUSH);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIO
|
|
|
|
return ioctl (scb->fd, TCFLSH, 0);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_SGTTY
|
|
|
|
/* This flushes both input and output, but we can't do better. */
|
|
|
|
return ioctl (scb->fd, TIOCFLUSH, 0);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
hardwire_send_break (scb)
|
|
|
|
serial_t scb;
|
|
|
|
{
|
|
|
|
#ifdef HAVE_TERMIOS
|
|
|
|
return tcsendbreak (scb->fd, 0);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIO
|
|
|
|
return ioctl (scb->fd, TCSBRK, 0);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_SGTTY
|
1993-08-08 23:02:37 +02:00
|
|
|
{
|
1993-09-08 22:57:08 +02:00
|
|
|
int status;
|
1993-08-08 23:02:37 +02:00
|
|
|
struct timeval timeout;
|
|
|
|
|
|
|
|
status = ioctl (scb->fd, TIOCSBRK, 0);
|
|
|
|
|
|
|
|
/* Can't use usleep; it doesn't exist in BSD 4.2. */
|
|
|
|
/* Note that if this select() is interrupted by a signal it will not wait
|
|
|
|
the full length of time. I think that is OK. */
|
|
|
|
timeout.tv_sec = 0;
|
|
|
|
timeout.tv_usec = 250000;
|
|
|
|
select (0, 0, 0, 0, &timeout);
|
|
|
|
status = ioctl (scb->fd, TIOCCBRK, 0);
|
|
|
|
return status;
|
|
|
|
}
|
1993-07-28 08:45:35 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
1993-05-29 03:33:36 +02:00
|
|
|
static void
|
|
|
|
hardwire_raw(scb)
|
|
|
|
serial_t scb;
|
|
|
|
{
|
|
|
|
struct hardwire_ttystate state;
|
|
|
|
|
|
|
|
if (get_tty_state(scb, &state))
|
1993-11-01 23:25:23 +01:00
|
|
|
fprintf_unfiltered(gdb_stderr, "get_tty_state failed: %s\n", safe_strerror(errno));
|
1993-05-29 03:33:36 +02:00
|
|
|
|
|
|
|
#ifdef HAVE_TERMIOS
|
|
|
|
state.termios.c_iflag = 0;
|
|
|
|
state.termios.c_oflag = 0;
|
|
|
|
state.termios.c_lflag = 0;
|
|
|
|
state.termios.c_cflag &= ~(CSIZE|PARENB);
|
1994-06-02 18:58:48 +02:00
|
|
|
state.termios.c_cflag |= CLOCAL | CS8;
|
1993-05-29 03:33:36 +02:00
|
|
|
state.termios.c_cc[VMIN] = 0;
|
|
|
|
state.termios.c_cc[VTIME] = 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIO
|
|
|
|
state.termio.c_iflag = 0;
|
|
|
|
state.termio.c_oflag = 0;
|
|
|
|
state.termio.c_lflag = 0;
|
|
|
|
state.termio.c_cflag &= ~(CSIZE|PARENB);
|
1994-06-02 18:58:48 +02:00
|
|
|
state.termio.c_cflag |= CLOCAL | CS8;
|
1993-05-29 03:33:36 +02:00
|
|
|
state.termio.c_cc[VMIN] = 0;
|
|
|
|
state.termio.c_cc[VTIME] = 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_SGTTY
|
|
|
|
state.sgttyb.sg_flags |= RAW | ANYP;
|
|
|
|
state.sgttyb.sg_flags &= ~(CBREAK | ECHO);
|
1993-04-06 07:50:54 +02:00
|
|
|
#endif
|
1993-05-07 00:17:10 +02:00
|
|
|
|
|
|
|
scb->current_timeout = 0;
|
1993-05-29 03:33:36 +02:00
|
|
|
|
|
|
|
if (set_tty_state (scb, &state))
|
1993-11-01 23:25:23 +01:00
|
|
|
fprintf_unfiltered(gdb_stderr, "set_tty_state failed: %s\n", safe_strerror(errno));
|
1993-04-06 07:50:54 +02:00
|
|
|
}
|
|
|
|
|
1993-05-07 00:17:10 +02:00
|
|
|
/* Wait for input on scb, with timeout seconds. Returns 0 on success,
|
|
|
|
otherwise SERIAL_TIMEOUT or SERIAL_ERROR.
|
|
|
|
|
|
|
|
For termio{s}, we actually just setup VTIME if necessary, and let the
|
|
|
|
timeout occur in the read() in hardwire_read().
|
|
|
|
*/
|
1993-04-06 07:50:54 +02:00
|
|
|
|
|
|
|
static int
|
1993-05-04 04:22:14 +02:00
|
|
|
wait_for(scb, timeout)
|
1993-04-06 07:50:54 +02:00
|
|
|
serial_t scb;
|
|
|
|
int timeout;
|
|
|
|
{
|
1994-01-29 17:12:35 +01:00
|
|
|
scb->timeout_remaining = 0;
|
|
|
|
|
1993-05-04 04:22:14 +02:00
|
|
|
#ifdef HAVE_SGTTY
|
1994-01-29 17:12:35 +01:00
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
fd_set readfds;
|
1993-05-01 00:15:28 +02:00
|
|
|
|
1994-01-29 17:12:35 +01:00
|
|
|
FD_ZERO (&readfds);
|
1993-05-01 00:15:28 +02:00
|
|
|
|
1994-01-29 17:12:35 +01:00
|
|
|
tv.tv_sec = timeout;
|
|
|
|
tv.tv_usec = 0;
|
1993-05-01 00:15:28 +02:00
|
|
|
|
1994-01-29 17:12:35 +01:00
|
|
|
FD_SET(scb->fd, &readfds);
|
1993-05-01 00:15:28 +02:00
|
|
|
|
1994-01-29 17:12:35 +01:00
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
int numfds;
|
|
|
|
|
|
|
|
if (timeout >= 0)
|
|
|
|
numfds = select(scb->fd+1, &readfds, 0, 0, &tv);
|
1993-06-26 02:22:30 +02:00
|
|
|
else
|
1994-01-29 17:12:35 +01:00
|
|
|
numfds = select(scb->fd+1, &readfds, 0, 0, 0);
|
1993-06-26 02:22:30 +02:00
|
|
|
|
1994-01-29 17:12:35 +01:00
|
|
|
if (numfds <= 0)
|
|
|
|
if (numfds == 0)
|
|
|
|
return SERIAL_TIMEOUT;
|
|
|
|
else if (errno == EINTR)
|
|
|
|
continue;
|
|
|
|
else
|
|
|
|
return SERIAL_ERROR; /* Got an error from select or poll */
|
1993-05-07 00:17:10 +02:00
|
|
|
|
1994-01-29 17:12:35 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
1993-05-04 04:22:14 +02:00
|
|
|
#endif /* HAVE_SGTTY */
|
1993-04-06 07:50:54 +02:00
|
|
|
|
1993-05-04 04:22:14 +02:00
|
|
|
#if defined HAVE_TERMIO || defined HAVE_TERMIOS
|
1993-05-07 00:17:10 +02:00
|
|
|
if (timeout == scb->current_timeout)
|
|
|
|
return 0;
|
1993-04-06 07:50:54 +02:00
|
|
|
|
1994-01-29 17:12:35 +01:00
|
|
|
scb->current_timeout = timeout;
|
|
|
|
|
1993-05-07 00:17:10 +02:00
|
|
|
{
|
1993-05-29 03:33:36 +02:00
|
|
|
struct hardwire_ttystate state;
|
1993-05-01 00:15:28 +02:00
|
|
|
|
1993-05-29 03:33:36 +02:00
|
|
|
if (get_tty_state(scb, &state))
|
1993-11-01 23:25:23 +01:00
|
|
|
fprintf_unfiltered(gdb_stderr, "get_tty_state failed: %s\n", safe_strerror(errno));
|
1993-05-01 00:15:28 +02:00
|
|
|
|
1993-05-29 03:33:36 +02:00
|
|
|
#ifdef HAVE_TERMIOS
|
1994-01-22 20:16:02 +01:00
|
|
|
if (timeout < 0)
|
|
|
|
{
|
|
|
|
/* No timeout. */
|
|
|
|
state.termios.c_cc[VTIME] = 0;
|
|
|
|
state.termios.c_cc[VMIN] = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
state.termios.c_cc[VMIN] = 0;
|
|
|
|
state.termios.c_cc[VTIME] = timeout * 10;
|
|
|
|
if (state.termios.c_cc[VTIME] != timeout * 10)
|
|
|
|
{
|
1994-01-29 17:12:35 +01:00
|
|
|
|
|
|
|
/* If c_cc is an 8-bit signed character, we can't go
|
|
|
|
bigger than this. If it is always unsigned, we could use
|
|
|
|
25. */
|
|
|
|
|
|
|
|
scb->current_timeout = 12;
|
|
|
|
state.termios.c_cc[VTIME] = scb->current_timeout * 10;
|
|
|
|
scb->timeout_remaining = timeout - scb->current_timeout;
|
1994-01-22 20:16:02 +01:00
|
|
|
}
|
|
|
|
}
|
1993-05-29 03:33:36 +02:00
|
|
|
#endif
|
1993-05-04 04:22:14 +02:00
|
|
|
|
1993-05-07 00:17:10 +02:00
|
|
|
#ifdef HAVE_TERMIO
|
1994-01-22 20:16:02 +01:00
|
|
|
if (timeout < 0)
|
|
|
|
{
|
|
|
|
/* No timeout. */
|
|
|
|
state.termio.c_cc[VTIME] = 0;
|
|
|
|
state.termio.c_cc[VMIN] = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
state.termio.c_cc[VMIN] = 0;
|
|
|
|
state.termio.c_cc[VTIME] = timeout * 10;
|
|
|
|
if (state.termio.c_cc[VTIME] != timeout * 10)
|
|
|
|
{
|
1994-01-29 17:12:35 +01:00
|
|
|
/* If c_cc is an 8-bit signed character, we can't go
|
|
|
|
bigger than this. If it is always unsigned, we could use
|
|
|
|
25. */
|
|
|
|
|
|
|
|
scb->current_timeout = 12;
|
1994-02-24 13:40:39 +01:00
|
|
|
state.termio.c_cc[VTIME] = scb->current_timeout * 10;
|
1994-01-29 17:12:35 +01:00
|
|
|
scb->timeout_remaining = timeout - scb->current_timeout;
|
1994-01-22 20:16:02 +01:00
|
|
|
}
|
|
|
|
}
|
1993-05-29 03:33:36 +02:00
|
|
|
#endif
|
1993-05-07 00:17:10 +02:00
|
|
|
|
1993-05-29 03:33:36 +02:00
|
|
|
if (set_tty_state (scb, &state))
|
1993-11-01 23:25:23 +01:00
|
|
|
fprintf_unfiltered(gdb_stderr, "set_tty_state failed: %s\n", safe_strerror(errno));
|
1993-05-07 00:17:10 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* HAVE_TERMIO || HAVE_TERMIOS */
|
1993-05-04 04:22:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Read a character with user-specified timeout. TIMEOUT is number of seconds
|
|
|
|
to wait, or -1 to wait forever. Use timeout of 0 to effect a poll. Returns
|
1993-08-13 23:48:39 +02:00
|
|
|
char if successful. Returns SERIAL_TIMEOUT if timeout expired, EOF if line
|
|
|
|
dropped dead, or SERIAL_ERROR for any other error (see errno in that case). */
|
1993-05-04 04:22:14 +02:00
|
|
|
|
|
|
|
static int
|
|
|
|
hardwire_readchar(scb, timeout)
|
|
|
|
serial_t scb;
|
|
|
|
int timeout;
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
|
|
|
|
if (scb->bufcnt-- > 0)
|
|
|
|
return *scb->bufp++;
|
|
|
|
|
1994-01-29 17:12:35 +01:00
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
status = wait_for (scb, timeout);
|
|
|
|
|
|
|
|
if (status < 0)
|
|
|
|
return status;
|
|
|
|
|
|
|
|
scb->bufcnt = read (scb->fd, scb->buf, BUFSIZ);
|
|
|
|
|
|
|
|
if (scb->bufcnt <= 0)
|
|
|
|
{
|
|
|
|
if (scb->bufcnt == 0)
|
|
|
|
{
|
|
|
|
/* Zero characters means timeout (it could also be EOF, but
|
|
|
|
we don't (yet at least) distinguish). */
|
|
|
|
if (scb->timeout_remaining > 0)
|
|
|
|
{
|
|
|
|
timeout = scb->timeout_remaining;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return SERIAL_TIMEOUT;
|
|
|
|
}
|
1994-06-02 18:58:48 +02:00
|
|
|
else if (errno == EINTR)
|
|
|
|
continue;
|
1994-01-29 17:12:35 +01:00
|
|
|
else
|
|
|
|
return SERIAL_ERROR; /* Got an error from read */
|
|
|
|
}
|
|
|
|
|
|
|
|
scb->bufcnt--;
|
|
|
|
scb->bufp = scb->buf;
|
|
|
|
return *scb->bufp++;
|
|
|
|
}
|
1993-04-06 07:50:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef B19200
|
|
|
|
#define B19200 EXTA
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef B38400
|
|
|
|
#define B38400 EXTB
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Translate baud rates from integers to damn B_codes. Unix should
|
|
|
|
have outgrown this crap years ago, but even POSIX wouldn't buck it. */
|
|
|
|
|
|
|
|
static struct
|
|
|
|
{
|
|
|
|
int rate;
|
|
|
|
int code;
|
|
|
|
}
|
|
|
|
baudtab[] =
|
|
|
|
{
|
|
|
|
{50, B50},
|
|
|
|
{75, B75},
|
|
|
|
{110, B110},
|
|
|
|
{134, B134},
|
|
|
|
{150, B150},
|
|
|
|
{200, B200},
|
|
|
|
{300, B300},
|
|
|
|
{600, B600},
|
|
|
|
{1200, B1200},
|
|
|
|
{1800, B1800},
|
|
|
|
{2400, B2400},
|
|
|
|
{4800, B4800},
|
|
|
|
{9600, B9600},
|
|
|
|
{19200, B19200},
|
|
|
|
{38400, B38400},
|
|
|
|
{-1, -1},
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
rate_to_code(rate)
|
|
|
|
int rate;
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; baudtab[i].rate != -1; i++)
|
|
|
|
if (rate == baudtab[i].rate)
|
|
|
|
return baudtab[i].code;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
hardwire_setbaudrate(scb, rate)
|
|
|
|
serial_t scb;
|
|
|
|
int rate;
|
|
|
|
{
|
1993-05-29 03:33:36 +02:00
|
|
|
struct hardwire_ttystate state;
|
1993-04-06 07:50:54 +02:00
|
|
|
|
1993-05-29 03:33:36 +02:00
|
|
|
if (get_tty_state(scb, &state))
|
1993-04-10 00:14:04 +02:00
|
|
|
return -1;
|
1993-04-06 07:50:54 +02:00
|
|
|
|
1993-05-29 03:33:36 +02:00
|
|
|
#ifdef HAVE_TERMIOS
|
|
|
|
cfsetospeed (&state.termios, rate_to_code (rate));
|
|
|
|
cfsetispeed (&state.termios, rate_to_code (rate));
|
1993-04-06 07:50:54 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIO
|
|
|
|
#ifndef CIBAUD
|
|
|
|
#define CIBAUD CBAUD
|
|
|
|
#endif
|
|
|
|
|
1993-05-29 03:33:36 +02:00
|
|
|
state.termio.c_cflag &= ~(CBAUD | CIBAUD);
|
|
|
|
state.termio.c_cflag |= rate_to_code (rate);
|
1993-04-06 07:50:54 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_SGTTY
|
1993-05-29 03:33:36 +02:00
|
|
|
state.sgttyb.sg_ispeed = rate_to_code (rate);
|
|
|
|
state.sgttyb.sg_ospeed = rate_to_code (rate);
|
1993-04-06 07:50:54 +02:00
|
|
|
#endif
|
1993-05-29 03:33:36 +02:00
|
|
|
|
|
|
|
return set_tty_state (scb, &state);
|
1993-04-06 07:50:54 +02:00
|
|
|
}
|
|
|
|
|
1995-03-07 10:03:37 +01:00
|
|
|
static int
|
|
|
|
hardwire_setstopbits(scb, num)
|
|
|
|
serial_t scb;
|
|
|
|
int num;
|
|
|
|
{
|
|
|
|
struct hardwire_ttystate state;
|
|
|
|
int newbit;
|
|
|
|
|
|
|
|
if (get_tty_state(scb, &state))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
switch (num)
|
|
|
|
{
|
|
|
|
case SERIAL_1_STOPBITS:
|
|
|
|
newbit = 0;
|
|
|
|
break;
|
|
|
|
case SERIAL_1_AND_A_HALF_STOPBITS:
|
|
|
|
case SERIAL_2_STOPBITS:
|
|
|
|
newbit = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIOS
|
|
|
|
if (!newbit)
|
|
|
|
state.termios.c_cflag &= ~CSTOPB;
|
|
|
|
else
|
|
|
|
state.termios.c_cflag |= CSTOPB; /* two bits */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIO
|
|
|
|
if (!newbit)
|
|
|
|
state.termio.c_cflag &= ~CSTOPB;
|
|
|
|
else
|
|
|
|
state.termio.c_cflag |= CSTOPB; /* two bits */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_SGTTY
|
|
|
|
return 0; /* sgtty doesn't support this */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return set_tty_state (scb, &state);
|
|
|
|
}
|
|
|
|
|
1993-04-06 07:50:54 +02:00
|
|
|
static int
|
|
|
|
hardwire_write(scb, str, len)
|
|
|
|
serial_t scb;
|
|
|
|
const char *str;
|
|
|
|
int len;
|
|
|
|
{
|
|
|
|
int cc;
|
|
|
|
|
|
|
|
while (len > 0)
|
|
|
|
{
|
|
|
|
cc = write(scb->fd, str, len);
|
|
|
|
|
|
|
|
if (cc < 0)
|
|
|
|
return 1;
|
|
|
|
len -= cc;
|
|
|
|
str += cc;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
hardwire_close(scb)
|
|
|
|
serial_t scb;
|
|
|
|
{
|
|
|
|
if (scb->fd < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
close(scb->fd);
|
|
|
|
scb->fd = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct serial_ops hardwire_ops =
|
|
|
|
{
|
|
|
|
"hardwire",
|
|
|
|
0,
|
|
|
|
hardwire_open,
|
|
|
|
hardwire_close,
|
|
|
|
hardwire_readchar,
|
|
|
|
hardwire_write,
|
* inftarg.c: Remove unused include of terminal.h.
* signals.h: Don't undefine signals anymore.
* main.c: Use job_control from serial.h.
* fork-child.c (fork_inferior): Use gdb_setpgid.
* serial.h, ser-unix.c, ser-go32.c: Provide gdb_setpgid.
* utils.c (quit): Use current_target->to_terminal_ours to figure
out whether we care about lack of job control, rather than __GO32__.
* utils.c: Include serial.h not terminal.h
(quit): Use job_control not TIOCGPGRP.
* terminal.h: Don't undefine TIOCGPGRP.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c: Add SERIAL_FLUSH_OUTPUT.
* utils.c (quit): Use it.
* serial.h: Add SERIAL_UN_FDOPEN.
* utils.c (quit): Use it.
* ser-unix.c: Add process group to ttystate.
[HAVE_SGTTY]: Add tchars, ltchars, and lmode to ttystate.
* inflow.c: Include serial.h not terminal.h.
Use serial.h stuff to replace most of the maze of #ifdef's.
* inflow.c, main.c, inferior.h: make gdb_has_a_terminal a function.
* serial.h: Document SERIAL_SET_TTY_STATE as being immediate.
* ser-unix.c: Use TIOCSETN not TIOCSETP so it is true.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c:
Add SERIAL_PRINT_TTY_STATE, SERIAL_NOFLUSH_SET_TTY_STATE, and
SERIAL_SET_PROCESS_GROUP.
* inflow.c: Use them.
* config/xm-svr4.h, config/rs6000/xm-rs6000.h, config/sparc/sun4os4.h:
Define HAVE_TERMIOS.
* Various: Remove all use of TIOC*_BROKEN.
1993-07-01 00:20:53 +02:00
|
|
|
hardwire_flush_output,
|
1993-07-28 08:45:35 +02:00
|
|
|
hardwire_flush_input,
|
|
|
|
hardwire_send_break,
|
1993-04-06 07:50:54 +02:00
|
|
|
hardwire_raw,
|
1993-05-29 03:33:36 +02:00
|
|
|
hardwire_get_tty_state,
|
|
|
|
hardwire_set_tty_state,
|
* inftarg.c: Remove unused include of terminal.h.
* signals.h: Don't undefine signals anymore.
* main.c: Use job_control from serial.h.
* fork-child.c (fork_inferior): Use gdb_setpgid.
* serial.h, ser-unix.c, ser-go32.c: Provide gdb_setpgid.
* utils.c (quit): Use current_target->to_terminal_ours to figure
out whether we care about lack of job control, rather than __GO32__.
* utils.c: Include serial.h not terminal.h
(quit): Use job_control not TIOCGPGRP.
* terminal.h: Don't undefine TIOCGPGRP.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c: Add SERIAL_FLUSH_OUTPUT.
* utils.c (quit): Use it.
* serial.h: Add SERIAL_UN_FDOPEN.
* utils.c (quit): Use it.
* ser-unix.c: Add process group to ttystate.
[HAVE_SGTTY]: Add tchars, ltchars, and lmode to ttystate.
* inflow.c: Include serial.h not terminal.h.
Use serial.h stuff to replace most of the maze of #ifdef's.
* inflow.c, main.c, inferior.h: make gdb_has_a_terminal a function.
* serial.h: Document SERIAL_SET_TTY_STATE as being immediate.
* ser-unix.c: Use TIOCSETN not TIOCSETP so it is true.
* serial.h, ser-unix.c, ser-go32.c, ser-tcp.c:
Add SERIAL_PRINT_TTY_STATE, SERIAL_NOFLUSH_SET_TTY_STATE, and
SERIAL_SET_PROCESS_GROUP.
* inflow.c: Use them.
* config/xm-svr4.h, config/rs6000/xm-rs6000.h, config/sparc/sun4os4.h:
Define HAVE_TERMIOS.
* Various: Remove all use of TIOC*_BROKEN.
1993-07-01 00:20:53 +02:00
|
|
|
hardwire_print_tty_state,
|
|
|
|
hardwire_noflush_set_tty_state,
|
1993-05-29 03:33:36 +02:00
|
|
|
hardwire_setbaudrate,
|
1995-03-07 10:03:37 +01:00
|
|
|
hardwire_setstopbits,
|
1993-04-06 07:50:54 +02:00
|
|
|
};
|
|
|
|
|
1993-05-04 04:22:14 +02:00
|
|
|
void
|
1993-04-06 07:50:54 +02:00
|
|
|
_initialize_ser_hardwire ()
|
|
|
|
{
|
|
|
|
serial_add_interface (&hardwire_ops);
|
|
|
|
}
|