1999-04-16 03:35:26 +02:00
|
|
|
|
/* Serial interface for local (hardwired) serial ports on Un*x like systems
|
2004-01-09 21:42:10 +01:00
|
|
|
|
|
2016-01-01 05:33:14 +01:00
|
|
|
|
Copyright (C) 1992-2016 Free Software Foundation, Inc.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
This file is part of GDB.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
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
|
2007-08-23 20:08:50 +02:00
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(at your option) any later version.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
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.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-23 20:08:50 +02:00
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
#include "serial.h"
|
2005-03-25 20:47:23 +01:00
|
|
|
|
#include "ser-base.h"
|
1999-09-22 05:28:34 +02:00
|
|
|
|
#include "ser-unix.h"
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include "terminal.h"
|
1999-09-22 05:28:34 +02:00
|
|
|
|
#include <sys/socket.h>
|
2015-08-24 19:50:55 +02:00
|
|
|
|
#include "gdb_sys_time.h"
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
* NEWS: Mention native Windows support.
* Makefile.in (gdb_select_h, ser_tcp_h): New.
(ALLDEPFILES): Add ser-mingw.c.
(event-loop.o, inflow.o, mingw-hdep.o, posix-hdep.o, ser-base.o)
(ser-tcp.o, ser-unix.o): Update.
(ser-mingw.o): New rule.
* configure: Regenerated.
* configure.ac: Add ser-mingw.o for mingw32.
* ser-mingw.c: New file.
* event-loop.c: Include "gdb_select.h".
(gdb_select): Remove, moved to mingw-hdep.c and posix-hdep.c.
* ser-base.c: Include "gdb_select.h".
(ser_base_wait_for): Use gdb_select.
* serial.c (serial_for_fd): New function.
(serial_fdopen): Try "terminal" before "hardwire". Initialize
the allocated struct serial.
(serial_wait_handle): New function.
* serial.h (serial_for_fd, serial_wait_handle): New prototypes.
(struct serial_ops) [USE_WIN32API]: Add wait_handle.
* gdb_select.h: New file.
* ser-tcp.c: Include "ser-tcp.h". Remove unused "ser-unix.h" include.
(net_close, net_read_prim, net_write_prim): Make global.
(net_open): Likewise. Pass an exception set to select. Whitespace fix.
Document why we can not use gdb_select.
(_initialize_ser_tcp) [USE_WIN32API]: Do not register TCP support here.
* ser-tcp.h: New file.
* inflow.c (gdb_has_a_terminal): Don't initialize stdin_serial here.
(handle_sigio): Use gdb_select.
(initialize_stdin_serial): New function.
* terminal.h (initialize_stdin_serial): New prototype.
* top.c (gdb_init): Call initialize_stdin_serial.
* mingw-hdep.c (gdb_select): New function, moved from gdb_select in
event-loop.c. Add exception condition support. Use serial_for_fd
and serial_wait_handle. Fix timeout handling.
* posix-hdep.c: Include "gdb_select.h".
(gdb_select): New function.
* remote-st.c (connect_command): Use gdb_select.
* ser-unix.c: Include "gdb_select.h".
(hardwire_send_break, wait_for): Use gdb_select.
2006-02-10 23:01:43 +01:00
|
|
|
|
#include "gdb_select.h"
|
2007-05-22 12:57:12 +02:00
|
|
|
|
#include "gdbcmd.h"
|
PR gdb/7912:
* Makefile.in (SFILES): Add filestuff.c
(COMMON_OBS): Add filestuff.o.
(filestuff.o): New target.
* auto-load.c (auto_load_objfile_script_1): Use
gdb_fopen_cloexec.
* auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
* cli/cli-cmds.c (shell_escape): Call close_most_fds.
* cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
* common/agent.c (gdb_connect_sync_socket): Use
gdb_socket_cloexec.
* common/filestuff.c: New file.
* common/filestuff.h: New file.
* common/linux-osdata.c (linux_common_core_of_thread)
(command_from_pid, commandline_from_pid, print_source_lines)
(linux_xfer_osdata_shm, linux_xfer_osdata_sem)
(linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
gdb_fopen_cloexec.
* common/linux-procfs.c (linux_proc_get_int)
(linux_proc_pid_has_state): Use gdb_fopen_cloexec.
* config.in, configure: Rebuild.
* configure.ac: Don't check for sys/socket.h. Check for
fdwalk, pipe2.
* corelow.c (core_open): Use gdb_open_cloexec.
* dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
* fork-child.c (fork_inferior): Call close_most_fds.
* gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
* inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
* linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
Use gdb_fopen_cloexec.
(linux_proc_xfer_partial, linux_proc_xfer_spu): Use
gdb_open_cloexec.
(linux_async_pipe): Use gdb_pipe_cloexec.
* remote-fileio.c (remote_fileio_func_open): Use
gdb_open_cloexec.
* remote.c (remote_file_put, remote_file_get): Use
gdb_fopen_cloexec.
* ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
close_most_fds.
* ser-tcp.c (net_open): Use gdb_socket_cloexec.
* ser-unix.c (hardwire_open): Use gdb_open_cloexec.
* solib.c (solib_find): Use gdb_open_cloexec.
* source.c (openp, find_and_open_source): Use gdb_open_cloexec.
* tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
(tfile_open): Use gdb_open_cloexec.
* tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
* ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
* xml-support.c (xml_fetch_content_from_file): Use
gdb_fopen_cloexec.
* main.c (captured_main): Call notice_open_fds.
gdbserver
* Makefile.in (SFILES): Add filestuff.c.
(OBS): Add filestuff.o.
(filestuff.o): New target.
* config.in, configure: Rebuild.
* configure.ac: Check for fdwalk, pipe2.
2013-04-22 18:46:15 +02:00
|
|
|
|
#include "filestuff.h"
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#ifdef HAVE_TERMIOS
|
|
|
|
|
|
|
|
|
|
struct hardwire_ttystate
|
1999-07-07 22:19:36 +02:00
|
|
|
|
{
|
|
|
|
|
struct termios termios;
|
|
|
|
|
};
|
2007-05-22 12:57:12 +02:00
|
|
|
|
|
|
|
|
|
#ifdef CRTSCTS
|
|
|
|
|
/* Boolean to explicitly enable or disable h/w flow control. */
|
|
|
|
|
static int serial_hwflow;
|
|
|
|
|
static void
|
|
|
|
|
show_serial_hwflow (struct ui_file *file, int from_tty,
|
|
|
|
|
struct cmd_list_element *c, const char *value)
|
|
|
|
|
{
|
|
|
|
|
fprintf_filtered (file, _("Hardware flow control is %s.\n"), value);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#endif /* termios */
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIO
|
|
|
|
|
|
|
|
|
|
/* 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. */
|
|
|
|
|
|
|
|
|
|
struct hardwire_ttystate
|
1999-07-07 22:19:36 +02:00
|
|
|
|
{
|
|
|
|
|
struct termio termio;
|
|
|
|
|
};
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#endif /* termio */
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_SGTTY
|
|
|
|
|
struct hardwire_ttystate
|
1999-07-07 22:19:36 +02:00
|
|
|
|
{
|
|
|
|
|
struct sgttyb sgttyb;
|
|
|
|
|
struct tchars tc;
|
|
|
|
|
struct ltchars ltc;
|
|
|
|
|
/* Line discipline flags. */
|
|
|
|
|
int lmode;
|
|
|
|
|
};
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#endif /* sgtty */
|
|
|
|
|
|
2001-07-11 19:52:32 +02:00
|
|
|
|
static int hardwire_open (struct serial *scb, const char *name);
|
|
|
|
|
static void hardwire_raw (struct serial *scb);
|
|
|
|
|
static int wait_for (struct serial *scb, int timeout);
|
|
|
|
|
static int hardwire_readchar (struct serial *scb, int timeout);
|
|
|
|
|
static int do_hardwire_readchar (struct serial *scb, int timeout);
|
1999-09-22 05:28:34 +02:00
|
|
|
|
static int rate_to_code (int rate);
|
2001-07-11 19:52:32 +02:00
|
|
|
|
static int hardwire_setbaudrate (struct serial *scb, int rate);
|
2015-03-23 22:15:42 +01:00
|
|
|
|
static int hardwire_setparity (struct serial *scb, int parity);
|
2001-07-11 19:52:32 +02:00
|
|
|
|
static void hardwire_close (struct serial *scb);
|
|
|
|
|
static int get_tty_state (struct serial *scb,
|
|
|
|
|
struct hardwire_ttystate * state);
|
|
|
|
|
static int set_tty_state (struct serial *scb,
|
|
|
|
|
struct hardwire_ttystate * state);
|
|
|
|
|
static serial_ttystate hardwire_get_tty_state (struct serial *scb);
|
|
|
|
|
static int hardwire_set_tty_state (struct serial *scb, serial_ttystate state);
|
|
|
|
|
static int hardwire_noflush_set_tty_state (struct serial *, serial_ttystate,
|
|
|
|
|
serial_ttystate);
|
|
|
|
|
static void hardwire_print_tty_state (struct serial *, serial_ttystate,
|
|
|
|
|
struct ui_file *);
|
|
|
|
|
static int hardwire_drain_output (struct serial *);
|
|
|
|
|
static int hardwire_flush_output (struct serial *);
|
|
|
|
|
static int hardwire_flush_input (struct serial *);
|
|
|
|
|
static int hardwire_send_break (struct serial *);
|
|
|
|
|
static int hardwire_setstopbits (struct serial *, int);
|
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
|
void _initialize_ser_hardwire (void);
|
|
|
|
|
|
2011-01-11 22:53:25 +01:00
|
|
|
|
/* Open up a real live device for serial I/O. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
static int
|
2001-07-11 19:52:32 +02:00
|
|
|
|
hardwire_open (struct serial *scb, const char *name)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
PR gdb/7912:
* Makefile.in (SFILES): Add filestuff.c
(COMMON_OBS): Add filestuff.o.
(filestuff.o): New target.
* auto-load.c (auto_load_objfile_script_1): Use
gdb_fopen_cloexec.
* auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
* cli/cli-cmds.c (shell_escape): Call close_most_fds.
* cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
* common/agent.c (gdb_connect_sync_socket): Use
gdb_socket_cloexec.
* common/filestuff.c: New file.
* common/filestuff.h: New file.
* common/linux-osdata.c (linux_common_core_of_thread)
(command_from_pid, commandline_from_pid, print_source_lines)
(linux_xfer_osdata_shm, linux_xfer_osdata_sem)
(linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
gdb_fopen_cloexec.
* common/linux-procfs.c (linux_proc_get_int)
(linux_proc_pid_has_state): Use gdb_fopen_cloexec.
* config.in, configure: Rebuild.
* configure.ac: Don't check for sys/socket.h. Check for
fdwalk, pipe2.
* corelow.c (core_open): Use gdb_open_cloexec.
* dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
* fork-child.c (fork_inferior): Call close_most_fds.
* gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
* inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
* linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
Use gdb_fopen_cloexec.
(linux_proc_xfer_partial, linux_proc_xfer_spu): Use
gdb_open_cloexec.
(linux_async_pipe): Use gdb_pipe_cloexec.
* remote-fileio.c (remote_fileio_func_open): Use
gdb_open_cloexec.
* remote.c (remote_file_put, remote_file_get): Use
gdb_fopen_cloexec.
* ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
close_most_fds.
* ser-tcp.c (net_open): Use gdb_socket_cloexec.
* ser-unix.c (hardwire_open): Use gdb_open_cloexec.
* solib.c (solib_find): Use gdb_open_cloexec.
* source.c (openp, find_and_open_source): Use gdb_open_cloexec.
* tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
(tfile_open): Use gdb_open_cloexec.
* tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
* ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
* xml-support.c (xml_fetch_content_from_file): Use
gdb_fopen_cloexec.
* main.c (captured_main): Call notice_open_fds.
gdbserver
* Makefile.in (SFILES): Add filestuff.c.
(OBS): Add filestuff.o.
(filestuff.o): New target.
* config.in, configure: Rebuild.
* configure.ac: Check for fdwalk, pipe2.
2013-04-22 18:46:15 +02:00
|
|
|
|
scb->fd = gdb_open_cloexec (name, O_RDWR, 0);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (scb->fd < 0)
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2001-07-11 19:52:32 +02:00
|
|
|
|
get_tty_state (struct serial *scb, struct hardwire_ttystate *state)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
#ifdef HAVE_TERMIOS
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (tcgetattr (scb->fd, &state->termios) < 0)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIO
|
|
|
|
|
if (ioctl (scb->fd, TCGETA, &state->termio) < 0)
|
|
|
|
|
return -1;
|
|
|
|
|
return 0;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_SGTTY
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2001-07-11 19:52:32 +02:00
|
|
|
|
set_tty_state (struct serial *scb, struct hardwire_ttystate *state)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
#ifdef HAVE_TERMIOS
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (tcsetattr (scb->fd, TCSANOW, &state->termios) < 0)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIO
|
|
|
|
|
if (ioctl (scb->fd, TCSETA, &state->termio) < 0)
|
|
|
|
|
return -1;
|
|
|
|
|
return 0;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_SGTTY
|
|
|
|
|
if (ioctl (scb->fd, TIOCSETN, &state->sgttyb) < 0)
|
|
|
|
|
return -1;
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static serial_ttystate
|
2001-07-11 19:52:32 +02:00
|
|
|
|
hardwire_get_tty_state (struct serial *scb)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
Replace some xmalloc-family functions with XNEW-family ones
This patch is part of the make-gdb-buildable-in-C++ effort. The idea is
to change some calls to the xmalloc family of functions to calls to the
equivalents in the XNEW family. This avoids adding an explicit cast, so
it keeps the code a bit more readable. Some of them also map relatively
well to a C++ equivalent (XNEW (struct foo) -> new foo), so it will be
possible to do scripted replacements if needed.
I only changed calls that were obviously allocating memory for one or
multiple "objects". Allocation of variable sizes (such as strings or
buffer handling) will be for later (and won't use XNEW).
- xmalloc (sizeof (struct foo)) -> XNEW (struct foo)
- xmalloc (num * sizeof (struct foo)) -> XNEWVEC (struct foo, num)
- xcalloc (1, sizeof (struct foo)) -> XCNEW (struct foo)
- xcalloc (num, sizeof (struct foo)) -> XCNEWVEC (struct foo, num)
- xrealloc (p, num * sizeof (struct foo) -> XRESIZEVEC (struct foo, p, num)
- obstack_alloc (ob, sizeof (struct foo)) -> XOBNEW (ob, struct foo)
- obstack_alloc (ob, num * sizeof (struct foo)) -> XOBNEWVEC (ob, struct foo, num)
- alloca (sizeof (struct foo)) -> XALLOCA (struct foo)
- alloca (num * sizeof (struct foo)) -> XALLOCAVEC (struct foo, num)
Some instances of xmalloc followed by memset to zero the buffer were
replaced by XCNEW or XCNEWVEC.
I regtested on x86-64, Ubuntu 14.04, but the patch touches many
architecture-specific files. For those I'll have to rely on the
buildbot or people complaining that I broke their gdb.
gdb/ChangeLog:
* aarch64-linux-nat.c (aarch64_add_process): Likewise.
* aarch64-tdep.c (aarch64_gdbarch_init): Likewise.
* ada-exp.y (write_ambiguous_var): Likewise.
* ada-lang.c (resolve_subexp): Likewise.
(user_select_syms): Likewise.
(assign_aggregate): Likewise.
(ada_evaluate_subexp): Likewise.
(cache_symbol): Likewise.
* addrmap.c (allocate_key): Likewise.
(addrmap_create_mutable): Likewise.
* aix-thread.c (sync_threadlists): Likewise.
* alpha-tdep.c (alpha_push_dummy_call): Likewise.
(alpha_gdbarch_init): Likewise.
* amd64-windows-tdep.c (amd64_windows_push_arguments): Likewise.
* arm-linux-nat.c (arm_linux_add_process): Likewise.
* arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Likewise.
* arm-tdep.c (push_stack_item): Likewise.
(arm_displaced_step_copy_insn): Likewise.
(arm_gdbarch_init): Likewise.
(_initialize_arm_tdep): Likewise.
* avr-tdep.c (push_stack_item): Likewise.
* ax-general.c (new_agent_expr): Likewise.
* block.c (block_initialize_namespace): Likewise.
* breakpoint.c (alloc_counted_command_line): Likewise.
(update_dprintf_command_list): Likewise.
(parse_breakpoint_sals): Likewise.
(decode_static_tracepoint_spec): Likewise.
(until_break_command): Likewise.
(clear_command): Likewise.
(update_global_location_list): Likewise.
(get_breakpoint_objfile_data) Likewise.
* btrace.c (ftrace_new_function): Likewise.
(btrace_set_insn_history): Likewise.
(btrace_set_call_history): Likewise.
* buildsym.c (add_symbol_to_list): Likewise.
(record_pending_block): Likewise.
(start_subfile): Likewise.
(start_buildsym_compunit): Likewise.
(push_subfile): Likewise.
(end_symtab_get_static_block): Likewise.
(buildsym_init): Likewise.
* cli/cli-cmds.c (source_command): Likewise.
* cli/cli-decode.c (add_cmd): Likewise.
* cli/cli-script.c (build_command_line): Likewise.
(setup_user_args): Likewise.
(realloc_body_list): Likewise.
(process_next_line): Likewise.
(copy_command_lines): Likewise.
* cli/cli-setshow.c (do_set_command): Likewise.
* coff-pe-read.c (read_pe_exported_syms): Likewise.
* coffread.c (coff_locate_sections): Likewise.
(coff_symtab_read): Likewise.
(coff_read_struct_type): Likewise.
* common/cleanups.c (make_my_cleanup2): Likewise.
* common/common-exceptions.c (throw_it): Likewise.
* common/filestuff.c (make_cleanup_close): Likewise.
* common/format.c (parse_format_string): Likewise.
* common/queue.h (DEFINE_QUEUE_P): Likewise.
* compile/compile-object-load.c (munmap_list_add): Likewise.
(compile_object_load): Likewise.
* compile/compile-object-run.c (compile_object_run): Likewise.
* compile/compile.c (append_args): Likewise.
* corefile.c (specify_exec_file_hook): Likewise.
* cp-support.c (make_symbol_overload_list): Likewise.
* cris-tdep.c (push_stack_item): Likewise.
(cris_gdbarch_init): Likewise.
* ctf.c (ctf_trace_file_writer_new): Likewise.
* dbxread.c (init_header_files): Likewise.
(add_new_header_file): Likewise.
(init_bincl_list): Likewise.
(dbx_end_psymtab): Likewise.
(start_psymtab): Likewise.
(dbx_end_psymtab): Likewise.
* dcache.c (dcache_init): Likewise.
* dictionary.c (dict_create_hashed): Likewise.
(dict_create_hashed_expandable): Likewise.
(dict_create_linear): Likewise.
(dict_create_linear_expandable): Likewise.
* dtrace-probe.c (dtrace_process_dof_probe): Likewise.
* dummy-frame.c (register_dummy_frame_dtor): Likewise.
* dwarf2-frame-tailcall.c (cache_new_ref1): Likewise.
* dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
(decode_frame_entry_1): Likewise.
* dwarf2expr.c (new_dwarf_expr_context): Likewise.
* dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise.
* dwarf2read.c (dwarf2_has_info): Likewise.
(create_signatured_type_table_from_index): Likewise.
(dwarf2_read_index): Likewise.
(dw2_get_file_names_reader): Likewise.
(create_all_type_units): Likewise.
(read_cutu_die_from_dwo): Likewise.
(init_tu_and_read_dwo_dies): Likewise.
(init_cutu_and_read_dies): Likewise.
(create_all_comp_units): Likewise.
(queue_comp_unit): Likewise.
(inherit_abstract_dies): Likewise.
(read_call_site_scope): Likewise.
(dwarf2_add_field): Likewise.
(dwarf2_add_typedef): Likewise.
(dwarf2_add_member_fn): Likewise.
(attr_to_dynamic_prop): Likewise.
(abbrev_table_alloc_abbrev): Likewise.
(abbrev_table_read_table): Likewise.
(add_include_dir): Likewise.
(add_file_name): Likewise.
(dwarf_decode_line_header): Likewise.
(dwarf2_const_value_attr): Likewise.
(dwarf_alloc_block): Likewise.
(parse_macro_definition): Likewise.
(set_die_type): Likewise.
(write_psymtabs_to_index): Likewise.
(create_cus_from_index): Likewise.
(dwarf2_create_include_psymtab): Likewise.
(process_psymtab_comp_unit_reader): Likewise.
(build_type_psymtab_dependencies): Likewise.
(read_comp_units_from_section): Likewise.
(compute_compunit_symtab_includes): Likewise.
(create_dwo_unit_in_dwp_v1): Likewise.
(create_dwo_unit_in_dwp_v2): Likewise.
(read_func_scope): Likewise.
(process_structure_scope): Likewise.
(mark_common_block_symbol_computed): Likewise.
(load_partial_dies): Likewise.
(dwarf2_symbol_mark_computed): Likewise.
* elfread.c (elf_symfile_segments): Likewise.
(elf_read_minimal_symbols): Likewise.
* environ.c (make_environ): Likewise.
* eval.c (evaluate_subexp_standard): Likewise.
* event-loop.c (create_file_handler): Likewise.
(create_async_signal_handler): Likewise.
(create_async_event_handler): Likewise.
(create_timer): Likewise.
* exec.c (build_section_table): Likewise.
* fbsd-nat.c (fbsd_remember_child): Likewise.
* fork-child.c (fork_inferior): Likewise.
* frv-tdep.c (new_variant): Likewise.
* gdbarch.sh (gdbarch_alloc): Likewise.
(append_name): Likewise.
* gdbtypes.c (rank_function): Likewise.
(copy_type_recursive): Likewise.
(add_dyn_prop): Likewise.
* gnu-nat.c (make_proc): Likewise.
(make_inf): Likewise.
(gnu_write_inferior): Likewise.
* gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
(build_std_type_info_type): Likewise.
* guile/scm-param.c (compute_enum_list): Likewise.
* guile/scm-utils.c (gdbscm_parse_function_args): Likewise.
* guile/scm-value.c (gdbscm_value_call): Likewise.
* h8300-tdep.c (h8300_gdbarch_init): Likewise.
* hppa-tdep.c (hppa_init_objfile_priv_data): Likewise.
(read_unwind_info): Likewise.
* ia64-tdep.c (ia64_gdbarch_init): Likewise.
* infcall.c (dummy_frame_context_saver_setup): Likewise.
(call_function_by_hand_dummy): Likewise.
* infcmd.c (step_once): Likewise.
(finish_forward): Likewise.
(attach_command): Likewise.
(notice_new_inferior): Likewise.
* inferior.c (add_inferior_silent): Likewise.
* infrun.c (add_displaced_stepping_state): Likewise.
(save_infcall_control_state): Likewise.
(save_inferior_ptid): Likewise.
(_initialize_infrun): Likewise.
* jit.c (bfd_open_from_target_memory): Likewise.
(jit_gdbarch_data_init): Likewise.
* language.c (add_language): Likewise.
* linespec.c (decode_line_2): Likewise.
* linux-nat.c (add_to_pid_list): Likewise.
(add_initial_lwp): Likewise.
* linux-thread-db.c (add_thread_db_info): Likewise.
(record_thread): Likewise.
(info_auto_load_libthread_db): Likewise.
* m32c-tdep.c (m32c_gdbarch_init): Likewise.
* m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
* m68k-tdep.c (m68k_gdbarch_init): Likewise.
* m88k-tdep.c (m88k_analyze_prologue): Likewise.
* macrocmd.c (macro_define_command): Likewise.
* macroexp.c (gather_arguments): Likewise.
* macroscope.c (sal_macro_scope): Likewise.
* macrotab.c (new_macro_table): Likewise.
* mdebugread.c (push_parse_stack): Likewise.
(parse_partial_symbols): Likewise.
(parse_symbol): Likewise.
(psymtab_to_symtab_1): Likewise.
(new_block): Likewise.
(new_psymtab): Likewise.
(mdebug_build_psymtabs): Likewise.
(add_pending): Likewise.
(elfmdebug_build_psymtabs): Likewise.
* mep-tdep.c (mep_gdbarch_init): Likewise.
* mi/mi-main.c (mi_execute_command): Likewise.
* mi/mi-parse.c (mi_parse_argv): Likewise.
* minidebug.c (lzma_open): Likewise.
* minsyms.c (terminate_minimal_symbol_table): Likewise.
* mips-linux-nat.c (mips_linux_insert_watchpoint): Likewise.
* mips-tdep.c (mips_gdbarch_init): Likewise.
* mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
* msp430-tdep.c (msp430_gdbarch_init): Likewise.
* mt-tdep.c (mt_registers_info): Likewise.
* nat/aarch64-linux.c (aarch64_linux_new_thread): Likewise.
* nat/linux-btrace.c (linux_enable_bts): Likewise.
(linux_enable_pt): Likewise.
* nat/linux-osdata.c (linux_xfer_osdata_processes): Likewise.
(linux_xfer_osdata_processgroups): Likewise.
* nios2-tdep.c (nios2_gdbarch_init): Likewise.
* nto-procfs.c (procfs_meminfo): Likewise.
* objc-lang.c (start_msglist): Likewise.
(selectors_info): Likewise.
(classes_info): Likewise.
(find_methods): Likewise.
* objfiles.c (allocate_objfile): Likewise.
(update_section_map): Likewise.
* osabi.c (gdbarch_register_osabi): Likewise.
(gdbarch_register_osabi_sniffer): Likewise.
* parse.c (start_arglist): Likewise.
* ppc-linux-nat.c (hwdebug_find_thread_points_by_tid): Likewise.
(hwdebug_insert_point): Likewise.
* printcmd.c (display_command): Likewise.
(ui_printf): Likewise.
* procfs.c (create_procinfo): Likewise.
(load_syscalls): Likewise.
(proc_get_LDT_entry): Likewise.
(proc_update_threads): Likewise.
* prologue-value.c (make_pv_area): Likewise.
(pv_area_store): Likewise.
* psymtab.c (extend_psymbol_list): Likewise.
(init_psymbol_list): Likewise.
(allocate_psymtab): Likewise.
* python/py-inferior.c (add_thread_object): Likewise.
* python/py-param.c (compute_enum_values): Likewise.
* python/py-value.c (valpy_call): Likewise.
* python/py-varobj.c (py_varobj_iter_next): Likewise.
* python/python.c (ensure_python_env): Likewise.
* record-btrace.c (record_btrace_start_replaying): Likewise.
* record-full.c (record_full_reg_alloc): Likewise.
(record_full_mem_alloc): Likewise.
(record_full_end_alloc): Likewise.
(record_full_core_xfer_partial): Likewise.
* regcache.c (get_thread_arch_aspace_regcache): Likewise.
* remote-fileio.c (remote_fileio_init_fd_map): Likewise.
* remote-notif.c (remote_notif_state_allocate): Likewise.
* remote.c (demand_private_info): Likewise.
(remote_notif_stop_alloc_reply): Likewise.
(remote_enable_btrace): Likewise.
* reverse.c (save_bookmark_command): Likewise.
* rl78-tdep.c (rl78_gdbarch_init): Likewise.
* rx-tdep.c (rx_gdbarch_init): Likewise.
* s390-linux-nat.c (s390_insert_watchpoint): Likewise.
* ser-go32.c (dos_get_tty_state): Likewise.
(dos_copy_tty_state): Likewise.
* ser-mingw.c (ser_windows_open): Likewise.
(ser_console_wait_handle): Likewise.
(ser_console_get_tty_state): Likewise.
(make_pipe_state): Likewise.
(net_windows_open): Likewise.
* ser-unix.c (hardwire_get_tty_state): Likewise.
(hardwire_copy_tty_state): Likewise.
* solib-aix.c (solib_aix_new_lm_info): Likewise.
* solib-dsbt.c (dsbt_current_sos): Likewise.
(dsbt_relocate_main_executable): Likewise.
* solib-frv.c (frv_current_sos): Likewise.
(frv_relocate_main_executable): Likewise.
* solib-spu.c (spu_bfd_fopen): Likewise.
* solib-svr4.c (lm_info_read): Likewise.
(svr4_copy_library_list): Likewise.
(svr4_default_sos): Likewise.
* source.c (find_source_lines): Likewise.
(line_info): Likewise.
(add_substitute_path_rule): Likewise.
* spu-linux-nat.c (spu_bfd_open): Likewise.
* spu-tdep.c (info_spu_dma_cmdlist): Likewise.
* stabsread.c (dbx_lookup_type): Likewise.
(read_type): Likewise.
(read_member_functions): Likewise.
(read_struct_fields): Likewise.
(read_baseclasses): Likewise.
(read_args): Likewise.
(_initialize_stabsread): Likewise.
* stack.c (func_command): Likewise.
* stap-probe.c (handle_stap_probe): Likewise.
* symfile.c (addrs_section_sort): Likewise.
(addr_info_make_relative): Likewise.
(load_section_callback): Likewise.
(add_symbol_file_command): Likewise.
(init_filename_language_table): Likewise.
* symtab.c (create_filename_seen_cache): Likewise.
(sort_search_symbols_remove_dups): Likewise.
(search_symbols): Likewise.
* target.c (make_cleanup_restore_target_terminal): Likewise.
* thread.c (new_thread): Likewise.
(enable_thread_stack_temporaries): Likewise.
(make_cleanup_restore_current_thread): Likewise.
(thread_apply_all_command): Likewise.
* tic6x-tdep.c (tic6x_gdbarch_init): Likewise.
* top.c (gdb_readline_wrapper): Likewise.
* tracefile-tfile.c (tfile_trace_file_writer_new): Likewise.
* tracepoint.c (trace_find_line_command): Likewise.
(all_tracepoint_actions_and_cleanup): Likewise.
(make_cleanup_restore_current_traceframe): Likewise.
(get_uploaded_tp): Likewise.
(get_uploaded_tsv): Likewise.
* tui/tui-data.c (tui_alloc_generic_win_info): Likewise.
(tui_alloc_win_info): Likewise.
(tui_alloc_content): Likewise.
(tui_add_content_elements): Likewise.
* tui/tui-disasm.c (tui_find_disassembly_address): Likewise.
(tui_set_disassem_content): Likewise.
* ui-file.c (ui_file_new): Likewise.
(stdio_file_new): Likewise.
(tee_file_new): Likewise.
* utils.c (make_cleanup_restore_integer): Likewise.
(add_internal_problem_command): Likewise.
* v850-tdep.c (v850_gdbarch_init): Likewise.
* valops.c (find_oload_champ): Likewise.
* value.c (allocate_value_lazy): Likewise.
(record_latest_value): Likewise.
(create_internalvar): Likewise.
* varobj.c (install_variable): Likewise.
(new_variable): Likewise.
(new_root_variable): Likewise.
(cppush): Likewise.
(_initialize_varobj): Likewise.
* windows-nat.c (windows_make_so): Likewise.
* x86-nat.c (x86_add_process): Likewise.
* xcoffread.c (arrange_linetable): Likewise.
(allocate_include_entry): Likewise.
(process_linenos): Likewise.
(SYMBOL_DUP): Likewise.
(xcoff_start_psymtab): Likewise.
(xcoff_end_psymtab): Likewise.
* xml-support.c (gdb_xml_parse_attr_ulongest): Likewise.
* xtensa-tdep.c (xtensa_register_type): Likewise.
* gdbarch.c: Regenerate.
* gdbarch.h: Regenerate.
gdb/gdbserver/ChangeLog:
* ax.c (gdb_parse_agent_expr): Likewise.
(compile_bytecodes): Likewise.
* dll.c (loaded_dll): Likewise.
* event-loop.c (append_callback_event): Likewise.
(create_file_handler): Likewise.
(create_file_event): Likewise.
* hostio.c (handle_open): Likewise.
* inferiors.c (add_thread): Likewise.
(add_process): Likewise.
* linux-aarch64-low.c (aarch64_linux_new_process): Likewise.
* linux-arm-low.c (arm_new_process): Likewise.
(arm_new_thread): Likewise.
* linux-low.c (add_to_pid_list): Likewise.
(linux_add_process): Likewise.
(handle_extended_wait): Likewise.
(add_lwp): Likewise.
(enqueue_one_deferred_signal): Likewise.
(enqueue_pending_signal): Likewise.
(linux_resume_one_lwp_throw): Likewise.
(linux_resume_one_thread): Likewise.
(linux_read_memory): Likewise.
(linux_write_memory): Likewise.
* linux-mips-low.c (mips_linux_new_process): Likewise.
(mips_linux_new_thread): Likewise.
(mips_add_watchpoint): Likewise.
* linux-x86-low.c (initialize_low_arch): Likewise.
* lynx-low.c (lynx_add_process): Likewise.
* mem-break.c (set_raw_breakpoint_at): Likewise.
(set_breakpoint): Likewise.
(add_condition_to_breakpoint): Likewise.
(add_commands_to_breakpoint): Likewise.
(clone_agent_expr): Likewise.
(clone_one_breakpoint): Likewise.
* regcache.c (new_register_cache): Likewise.
* remote-utils.c (look_up_one_symbol): Likewise.
* server.c (queue_stop_reply): Likewise.
(start_inferior): Likewise.
(queue_stop_reply_callback): Likewise.
(handle_target_event): Likewise.
* spu-low.c (fetch_ppc_memory): Likewise.
(store_ppc_memory): Likewise.
* target.c (set_target_ops): Likewise.
* thread-db.c (thread_db_load_search): Likewise.
(try_thread_db_load_1): Likewise.
* tracepoint.c (add_tracepoint): Likewise.
(add_tracepoint_action): Likewise.
(create_trace_state_variable): Likewise.
(cmd_qtdpsrc): Likewise.
(cmd_qtro): Likewise.
(add_while_stepping_state): Likewise.
* win32-low.c (child_add_thread): Likewise.
(get_image_name): Likewise.
2015-08-26 23:16:07 +02:00
|
|
|
|
struct hardwire_ttystate *state = XNEW (struct hardwire_ttystate);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (get_tty_state (scb, state))
|
2011-03-07 20:53:34 +01:00
|
|
|
|
{
|
|
|
|
|
xfree (state);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
return (serial_ttystate) state;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-03-04 20:23:42 +01:00
|
|
|
|
static serial_ttystate
|
|
|
|
|
hardwire_copy_tty_state (struct serial *scb, serial_ttystate ttystate)
|
|
|
|
|
{
|
Replace some xmalloc-family functions with XNEW-family ones
This patch is part of the make-gdb-buildable-in-C++ effort. The idea is
to change some calls to the xmalloc family of functions to calls to the
equivalents in the XNEW family. This avoids adding an explicit cast, so
it keeps the code a bit more readable. Some of them also map relatively
well to a C++ equivalent (XNEW (struct foo) -> new foo), so it will be
possible to do scripted replacements if needed.
I only changed calls that were obviously allocating memory for one or
multiple "objects". Allocation of variable sizes (such as strings or
buffer handling) will be for later (and won't use XNEW).
- xmalloc (sizeof (struct foo)) -> XNEW (struct foo)
- xmalloc (num * sizeof (struct foo)) -> XNEWVEC (struct foo, num)
- xcalloc (1, sizeof (struct foo)) -> XCNEW (struct foo)
- xcalloc (num, sizeof (struct foo)) -> XCNEWVEC (struct foo, num)
- xrealloc (p, num * sizeof (struct foo) -> XRESIZEVEC (struct foo, p, num)
- obstack_alloc (ob, sizeof (struct foo)) -> XOBNEW (ob, struct foo)
- obstack_alloc (ob, num * sizeof (struct foo)) -> XOBNEWVEC (ob, struct foo, num)
- alloca (sizeof (struct foo)) -> XALLOCA (struct foo)
- alloca (num * sizeof (struct foo)) -> XALLOCAVEC (struct foo, num)
Some instances of xmalloc followed by memset to zero the buffer were
replaced by XCNEW or XCNEWVEC.
I regtested on x86-64, Ubuntu 14.04, but the patch touches many
architecture-specific files. For those I'll have to rely on the
buildbot or people complaining that I broke their gdb.
gdb/ChangeLog:
* aarch64-linux-nat.c (aarch64_add_process): Likewise.
* aarch64-tdep.c (aarch64_gdbarch_init): Likewise.
* ada-exp.y (write_ambiguous_var): Likewise.
* ada-lang.c (resolve_subexp): Likewise.
(user_select_syms): Likewise.
(assign_aggregate): Likewise.
(ada_evaluate_subexp): Likewise.
(cache_symbol): Likewise.
* addrmap.c (allocate_key): Likewise.
(addrmap_create_mutable): Likewise.
* aix-thread.c (sync_threadlists): Likewise.
* alpha-tdep.c (alpha_push_dummy_call): Likewise.
(alpha_gdbarch_init): Likewise.
* amd64-windows-tdep.c (amd64_windows_push_arguments): Likewise.
* arm-linux-nat.c (arm_linux_add_process): Likewise.
* arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Likewise.
* arm-tdep.c (push_stack_item): Likewise.
(arm_displaced_step_copy_insn): Likewise.
(arm_gdbarch_init): Likewise.
(_initialize_arm_tdep): Likewise.
* avr-tdep.c (push_stack_item): Likewise.
* ax-general.c (new_agent_expr): Likewise.
* block.c (block_initialize_namespace): Likewise.
* breakpoint.c (alloc_counted_command_line): Likewise.
(update_dprintf_command_list): Likewise.
(parse_breakpoint_sals): Likewise.
(decode_static_tracepoint_spec): Likewise.
(until_break_command): Likewise.
(clear_command): Likewise.
(update_global_location_list): Likewise.
(get_breakpoint_objfile_data) Likewise.
* btrace.c (ftrace_new_function): Likewise.
(btrace_set_insn_history): Likewise.
(btrace_set_call_history): Likewise.
* buildsym.c (add_symbol_to_list): Likewise.
(record_pending_block): Likewise.
(start_subfile): Likewise.
(start_buildsym_compunit): Likewise.
(push_subfile): Likewise.
(end_symtab_get_static_block): Likewise.
(buildsym_init): Likewise.
* cli/cli-cmds.c (source_command): Likewise.
* cli/cli-decode.c (add_cmd): Likewise.
* cli/cli-script.c (build_command_line): Likewise.
(setup_user_args): Likewise.
(realloc_body_list): Likewise.
(process_next_line): Likewise.
(copy_command_lines): Likewise.
* cli/cli-setshow.c (do_set_command): Likewise.
* coff-pe-read.c (read_pe_exported_syms): Likewise.
* coffread.c (coff_locate_sections): Likewise.
(coff_symtab_read): Likewise.
(coff_read_struct_type): Likewise.
* common/cleanups.c (make_my_cleanup2): Likewise.
* common/common-exceptions.c (throw_it): Likewise.
* common/filestuff.c (make_cleanup_close): Likewise.
* common/format.c (parse_format_string): Likewise.
* common/queue.h (DEFINE_QUEUE_P): Likewise.
* compile/compile-object-load.c (munmap_list_add): Likewise.
(compile_object_load): Likewise.
* compile/compile-object-run.c (compile_object_run): Likewise.
* compile/compile.c (append_args): Likewise.
* corefile.c (specify_exec_file_hook): Likewise.
* cp-support.c (make_symbol_overload_list): Likewise.
* cris-tdep.c (push_stack_item): Likewise.
(cris_gdbarch_init): Likewise.
* ctf.c (ctf_trace_file_writer_new): Likewise.
* dbxread.c (init_header_files): Likewise.
(add_new_header_file): Likewise.
(init_bincl_list): Likewise.
(dbx_end_psymtab): Likewise.
(start_psymtab): Likewise.
(dbx_end_psymtab): Likewise.
* dcache.c (dcache_init): Likewise.
* dictionary.c (dict_create_hashed): Likewise.
(dict_create_hashed_expandable): Likewise.
(dict_create_linear): Likewise.
(dict_create_linear_expandable): Likewise.
* dtrace-probe.c (dtrace_process_dof_probe): Likewise.
* dummy-frame.c (register_dummy_frame_dtor): Likewise.
* dwarf2-frame-tailcall.c (cache_new_ref1): Likewise.
* dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
(decode_frame_entry_1): Likewise.
* dwarf2expr.c (new_dwarf_expr_context): Likewise.
* dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise.
* dwarf2read.c (dwarf2_has_info): Likewise.
(create_signatured_type_table_from_index): Likewise.
(dwarf2_read_index): Likewise.
(dw2_get_file_names_reader): Likewise.
(create_all_type_units): Likewise.
(read_cutu_die_from_dwo): Likewise.
(init_tu_and_read_dwo_dies): Likewise.
(init_cutu_and_read_dies): Likewise.
(create_all_comp_units): Likewise.
(queue_comp_unit): Likewise.
(inherit_abstract_dies): Likewise.
(read_call_site_scope): Likewise.
(dwarf2_add_field): Likewise.
(dwarf2_add_typedef): Likewise.
(dwarf2_add_member_fn): Likewise.
(attr_to_dynamic_prop): Likewise.
(abbrev_table_alloc_abbrev): Likewise.
(abbrev_table_read_table): Likewise.
(add_include_dir): Likewise.
(add_file_name): Likewise.
(dwarf_decode_line_header): Likewise.
(dwarf2_const_value_attr): Likewise.
(dwarf_alloc_block): Likewise.
(parse_macro_definition): Likewise.
(set_die_type): Likewise.
(write_psymtabs_to_index): Likewise.
(create_cus_from_index): Likewise.
(dwarf2_create_include_psymtab): Likewise.
(process_psymtab_comp_unit_reader): Likewise.
(build_type_psymtab_dependencies): Likewise.
(read_comp_units_from_section): Likewise.
(compute_compunit_symtab_includes): Likewise.
(create_dwo_unit_in_dwp_v1): Likewise.
(create_dwo_unit_in_dwp_v2): Likewise.
(read_func_scope): Likewise.
(process_structure_scope): Likewise.
(mark_common_block_symbol_computed): Likewise.
(load_partial_dies): Likewise.
(dwarf2_symbol_mark_computed): Likewise.
* elfread.c (elf_symfile_segments): Likewise.
(elf_read_minimal_symbols): Likewise.
* environ.c (make_environ): Likewise.
* eval.c (evaluate_subexp_standard): Likewise.
* event-loop.c (create_file_handler): Likewise.
(create_async_signal_handler): Likewise.
(create_async_event_handler): Likewise.
(create_timer): Likewise.
* exec.c (build_section_table): Likewise.
* fbsd-nat.c (fbsd_remember_child): Likewise.
* fork-child.c (fork_inferior): Likewise.
* frv-tdep.c (new_variant): Likewise.
* gdbarch.sh (gdbarch_alloc): Likewise.
(append_name): Likewise.
* gdbtypes.c (rank_function): Likewise.
(copy_type_recursive): Likewise.
(add_dyn_prop): Likewise.
* gnu-nat.c (make_proc): Likewise.
(make_inf): Likewise.
(gnu_write_inferior): Likewise.
* gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
(build_std_type_info_type): Likewise.
* guile/scm-param.c (compute_enum_list): Likewise.
* guile/scm-utils.c (gdbscm_parse_function_args): Likewise.
* guile/scm-value.c (gdbscm_value_call): Likewise.
* h8300-tdep.c (h8300_gdbarch_init): Likewise.
* hppa-tdep.c (hppa_init_objfile_priv_data): Likewise.
(read_unwind_info): Likewise.
* ia64-tdep.c (ia64_gdbarch_init): Likewise.
* infcall.c (dummy_frame_context_saver_setup): Likewise.
(call_function_by_hand_dummy): Likewise.
* infcmd.c (step_once): Likewise.
(finish_forward): Likewise.
(attach_command): Likewise.
(notice_new_inferior): Likewise.
* inferior.c (add_inferior_silent): Likewise.
* infrun.c (add_displaced_stepping_state): Likewise.
(save_infcall_control_state): Likewise.
(save_inferior_ptid): Likewise.
(_initialize_infrun): Likewise.
* jit.c (bfd_open_from_target_memory): Likewise.
(jit_gdbarch_data_init): Likewise.
* language.c (add_language): Likewise.
* linespec.c (decode_line_2): Likewise.
* linux-nat.c (add_to_pid_list): Likewise.
(add_initial_lwp): Likewise.
* linux-thread-db.c (add_thread_db_info): Likewise.
(record_thread): Likewise.
(info_auto_load_libthread_db): Likewise.
* m32c-tdep.c (m32c_gdbarch_init): Likewise.
* m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
* m68k-tdep.c (m68k_gdbarch_init): Likewise.
* m88k-tdep.c (m88k_analyze_prologue): Likewise.
* macrocmd.c (macro_define_command): Likewise.
* macroexp.c (gather_arguments): Likewise.
* macroscope.c (sal_macro_scope): Likewise.
* macrotab.c (new_macro_table): Likewise.
* mdebugread.c (push_parse_stack): Likewise.
(parse_partial_symbols): Likewise.
(parse_symbol): Likewise.
(psymtab_to_symtab_1): Likewise.
(new_block): Likewise.
(new_psymtab): Likewise.
(mdebug_build_psymtabs): Likewise.
(add_pending): Likewise.
(elfmdebug_build_psymtabs): Likewise.
* mep-tdep.c (mep_gdbarch_init): Likewise.
* mi/mi-main.c (mi_execute_command): Likewise.
* mi/mi-parse.c (mi_parse_argv): Likewise.
* minidebug.c (lzma_open): Likewise.
* minsyms.c (terminate_minimal_symbol_table): Likewise.
* mips-linux-nat.c (mips_linux_insert_watchpoint): Likewise.
* mips-tdep.c (mips_gdbarch_init): Likewise.
* mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
* msp430-tdep.c (msp430_gdbarch_init): Likewise.
* mt-tdep.c (mt_registers_info): Likewise.
* nat/aarch64-linux.c (aarch64_linux_new_thread): Likewise.
* nat/linux-btrace.c (linux_enable_bts): Likewise.
(linux_enable_pt): Likewise.
* nat/linux-osdata.c (linux_xfer_osdata_processes): Likewise.
(linux_xfer_osdata_processgroups): Likewise.
* nios2-tdep.c (nios2_gdbarch_init): Likewise.
* nto-procfs.c (procfs_meminfo): Likewise.
* objc-lang.c (start_msglist): Likewise.
(selectors_info): Likewise.
(classes_info): Likewise.
(find_methods): Likewise.
* objfiles.c (allocate_objfile): Likewise.
(update_section_map): Likewise.
* osabi.c (gdbarch_register_osabi): Likewise.
(gdbarch_register_osabi_sniffer): Likewise.
* parse.c (start_arglist): Likewise.
* ppc-linux-nat.c (hwdebug_find_thread_points_by_tid): Likewise.
(hwdebug_insert_point): Likewise.
* printcmd.c (display_command): Likewise.
(ui_printf): Likewise.
* procfs.c (create_procinfo): Likewise.
(load_syscalls): Likewise.
(proc_get_LDT_entry): Likewise.
(proc_update_threads): Likewise.
* prologue-value.c (make_pv_area): Likewise.
(pv_area_store): Likewise.
* psymtab.c (extend_psymbol_list): Likewise.
(init_psymbol_list): Likewise.
(allocate_psymtab): Likewise.
* python/py-inferior.c (add_thread_object): Likewise.
* python/py-param.c (compute_enum_values): Likewise.
* python/py-value.c (valpy_call): Likewise.
* python/py-varobj.c (py_varobj_iter_next): Likewise.
* python/python.c (ensure_python_env): Likewise.
* record-btrace.c (record_btrace_start_replaying): Likewise.
* record-full.c (record_full_reg_alloc): Likewise.
(record_full_mem_alloc): Likewise.
(record_full_end_alloc): Likewise.
(record_full_core_xfer_partial): Likewise.
* regcache.c (get_thread_arch_aspace_regcache): Likewise.
* remote-fileio.c (remote_fileio_init_fd_map): Likewise.
* remote-notif.c (remote_notif_state_allocate): Likewise.
* remote.c (demand_private_info): Likewise.
(remote_notif_stop_alloc_reply): Likewise.
(remote_enable_btrace): Likewise.
* reverse.c (save_bookmark_command): Likewise.
* rl78-tdep.c (rl78_gdbarch_init): Likewise.
* rx-tdep.c (rx_gdbarch_init): Likewise.
* s390-linux-nat.c (s390_insert_watchpoint): Likewise.
* ser-go32.c (dos_get_tty_state): Likewise.
(dos_copy_tty_state): Likewise.
* ser-mingw.c (ser_windows_open): Likewise.
(ser_console_wait_handle): Likewise.
(ser_console_get_tty_state): Likewise.
(make_pipe_state): Likewise.
(net_windows_open): Likewise.
* ser-unix.c (hardwire_get_tty_state): Likewise.
(hardwire_copy_tty_state): Likewise.
* solib-aix.c (solib_aix_new_lm_info): Likewise.
* solib-dsbt.c (dsbt_current_sos): Likewise.
(dsbt_relocate_main_executable): Likewise.
* solib-frv.c (frv_current_sos): Likewise.
(frv_relocate_main_executable): Likewise.
* solib-spu.c (spu_bfd_fopen): Likewise.
* solib-svr4.c (lm_info_read): Likewise.
(svr4_copy_library_list): Likewise.
(svr4_default_sos): Likewise.
* source.c (find_source_lines): Likewise.
(line_info): Likewise.
(add_substitute_path_rule): Likewise.
* spu-linux-nat.c (spu_bfd_open): Likewise.
* spu-tdep.c (info_spu_dma_cmdlist): Likewise.
* stabsread.c (dbx_lookup_type): Likewise.
(read_type): Likewise.
(read_member_functions): Likewise.
(read_struct_fields): Likewise.
(read_baseclasses): Likewise.
(read_args): Likewise.
(_initialize_stabsread): Likewise.
* stack.c (func_command): Likewise.
* stap-probe.c (handle_stap_probe): Likewise.
* symfile.c (addrs_section_sort): Likewise.
(addr_info_make_relative): Likewise.
(load_section_callback): Likewise.
(add_symbol_file_command): Likewise.
(init_filename_language_table): Likewise.
* symtab.c (create_filename_seen_cache): Likewise.
(sort_search_symbols_remove_dups): Likewise.
(search_symbols): Likewise.
* target.c (make_cleanup_restore_target_terminal): Likewise.
* thread.c (new_thread): Likewise.
(enable_thread_stack_temporaries): Likewise.
(make_cleanup_restore_current_thread): Likewise.
(thread_apply_all_command): Likewise.
* tic6x-tdep.c (tic6x_gdbarch_init): Likewise.
* top.c (gdb_readline_wrapper): Likewise.
* tracefile-tfile.c (tfile_trace_file_writer_new): Likewise.
* tracepoint.c (trace_find_line_command): Likewise.
(all_tracepoint_actions_and_cleanup): Likewise.
(make_cleanup_restore_current_traceframe): Likewise.
(get_uploaded_tp): Likewise.
(get_uploaded_tsv): Likewise.
* tui/tui-data.c (tui_alloc_generic_win_info): Likewise.
(tui_alloc_win_info): Likewise.
(tui_alloc_content): Likewise.
(tui_add_content_elements): Likewise.
* tui/tui-disasm.c (tui_find_disassembly_address): Likewise.
(tui_set_disassem_content): Likewise.
* ui-file.c (ui_file_new): Likewise.
(stdio_file_new): Likewise.
(tee_file_new): Likewise.
* utils.c (make_cleanup_restore_integer): Likewise.
(add_internal_problem_command): Likewise.
* v850-tdep.c (v850_gdbarch_init): Likewise.
* valops.c (find_oload_champ): Likewise.
* value.c (allocate_value_lazy): Likewise.
(record_latest_value): Likewise.
(create_internalvar): Likewise.
* varobj.c (install_variable): Likewise.
(new_variable): Likewise.
(new_root_variable): Likewise.
(cppush): Likewise.
(_initialize_varobj): Likewise.
* windows-nat.c (windows_make_so): Likewise.
* x86-nat.c (x86_add_process): Likewise.
* xcoffread.c (arrange_linetable): Likewise.
(allocate_include_entry): Likewise.
(process_linenos): Likewise.
(SYMBOL_DUP): Likewise.
(xcoff_start_psymtab): Likewise.
(xcoff_end_psymtab): Likewise.
* xml-support.c (gdb_xml_parse_attr_ulongest): Likewise.
* xtensa-tdep.c (xtensa_register_type): Likewise.
* gdbarch.c: Regenerate.
* gdbarch.h: Regenerate.
gdb/gdbserver/ChangeLog:
* ax.c (gdb_parse_agent_expr): Likewise.
(compile_bytecodes): Likewise.
* dll.c (loaded_dll): Likewise.
* event-loop.c (append_callback_event): Likewise.
(create_file_handler): Likewise.
(create_file_event): Likewise.
* hostio.c (handle_open): Likewise.
* inferiors.c (add_thread): Likewise.
(add_process): Likewise.
* linux-aarch64-low.c (aarch64_linux_new_process): Likewise.
* linux-arm-low.c (arm_new_process): Likewise.
(arm_new_thread): Likewise.
* linux-low.c (add_to_pid_list): Likewise.
(linux_add_process): Likewise.
(handle_extended_wait): Likewise.
(add_lwp): Likewise.
(enqueue_one_deferred_signal): Likewise.
(enqueue_pending_signal): Likewise.
(linux_resume_one_lwp_throw): Likewise.
(linux_resume_one_thread): Likewise.
(linux_read_memory): Likewise.
(linux_write_memory): Likewise.
* linux-mips-low.c (mips_linux_new_process): Likewise.
(mips_linux_new_thread): Likewise.
(mips_add_watchpoint): Likewise.
* linux-x86-low.c (initialize_low_arch): Likewise.
* lynx-low.c (lynx_add_process): Likewise.
* mem-break.c (set_raw_breakpoint_at): Likewise.
(set_breakpoint): Likewise.
(add_condition_to_breakpoint): Likewise.
(add_commands_to_breakpoint): Likewise.
(clone_agent_expr): Likewise.
(clone_one_breakpoint): Likewise.
* regcache.c (new_register_cache): Likewise.
* remote-utils.c (look_up_one_symbol): Likewise.
* server.c (queue_stop_reply): Likewise.
(start_inferior): Likewise.
(queue_stop_reply_callback): Likewise.
(handle_target_event): Likewise.
* spu-low.c (fetch_ppc_memory): Likewise.
(store_ppc_memory): Likewise.
* target.c (set_target_ops): Likewise.
* thread-db.c (thread_db_load_search): Likewise.
(try_thread_db_load_1): Likewise.
* tracepoint.c (add_tracepoint): Likewise.
(add_tracepoint_action): Likewise.
(create_trace_state_variable): Likewise.
(cmd_qtdpsrc): Likewise.
(cmd_qtro): Likewise.
(add_while_stepping_state): Likewise.
* win32-low.c (child_add_thread): Likewise.
(get_image_name): Likewise.
2015-08-26 23:16:07 +02:00
|
|
|
|
struct hardwire_ttystate *state = XNEW (struct hardwire_ttystate);
|
2011-03-04 20:23:42 +01:00
|
|
|
|
|
|
|
|
|
*state = *(struct hardwire_ttystate *) ttystate;
|
|
|
|
|
|
|
|
|
|
return (serial_ttystate) state;
|
|
|
|
|
}
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
static int
|
2001-07-11 19:52:32 +02:00
|
|
|
|
hardwire_set_tty_state (struct serial *scb, serial_ttystate ttystate)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
struct hardwire_ttystate *state;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
state = (struct hardwire_ttystate *) ttystate;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
return set_tty_state (scb, state);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2001-07-11 19:52:32 +02:00
|
|
|
|
hardwire_noflush_set_tty_state (struct serial *scb,
|
1999-09-22 05:28:34 +02:00
|
|
|
|
serial_ttystate new_ttystate,
|
|
|
|
|
serial_ttystate old_ttystate)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
struct hardwire_ttystate new_state;
|
|
|
|
|
#ifdef HAVE_SGTTY
|
|
|
|
|
struct hardwire_ttystate *state = (struct hardwire_ttystate *) old_ttystate;
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
new_state = *(struct hardwire_ttystate *) new_ttystate;
|
1999-04-16 03:35:26 +02: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. */
|
|
|
|
|
|
|
|
|
|
#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
|
2001-07-11 19:52:32 +02:00
|
|
|
|
hardwire_print_tty_state (struct serial *scb,
|
1999-09-22 05:28:34 +02:00
|
|
|
|
serial_ttystate ttystate,
|
2000-02-02 01:21:19 +01:00
|
|
|
|
struct ui_file *stream)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
struct hardwire_ttystate *state = (struct hardwire_ttystate *) ttystate;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIOS
|
1999-09-22 05:28:34 +02:00
|
|
|
|
fprintf_filtered (stream, "c_iflag = 0x%x, c_oflag = 0x%x,\n",
|
1999-10-06 01:13:56 +02:00
|
|
|
|
(int) state->termios.c_iflag,
|
|
|
|
|
(int) state->termios.c_oflag);
|
1999-09-22 05:28:34 +02:00
|
|
|
|
fprintf_filtered (stream, "c_cflag = 0x%x, c_lflag = 0x%x\n",
|
1999-10-06 01:13:56 +02:00
|
|
|
|
(int) state->termios.c_cflag,
|
|
|
|
|
(int) state->termios.c_lflag);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#if 0
|
|
|
|
|
/* This not in POSIX, and is not really documented by those systems
|
|
|
|
|
which have it (at least not Sun). */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
fprintf_filtered (stream, "c_line = 0x%x.\n", state->termios.c_line);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#endif
|
1999-09-22 05:28:34 +02:00
|
|
|
|
fprintf_filtered (stream, "c_cc: ");
|
1999-04-16 03:35:26 +02:00
|
|
|
|
for (i = 0; i < NCCS; i += 1)
|
1999-09-22 05:28:34 +02:00
|
|
|
|
fprintf_filtered (stream, "0x%x ", state->termios.c_cc[i]);
|
|
|
|
|
fprintf_filtered (stream, "\n");
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIO
|
1999-09-22 05:28:34 +02:00
|
|
|
|
fprintf_filtered (stream, "c_iflag = 0x%x, c_oflag = 0x%x,\n",
|
|
|
|
|
state->termio.c_iflag, state->termio.c_oflag);
|
|
|
|
|
fprintf_filtered (stream, "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);
|
|
|
|
|
fprintf_filtered (stream, "c_cc: ");
|
1999-04-16 03:35:26 +02:00
|
|
|
|
for (i = 0; i < NCC; i += 1)
|
1999-09-22 05:28:34 +02:00
|
|
|
|
fprintf_filtered (stream, "0x%x ", state->termio.c_cc[i]);
|
|
|
|
|
fprintf_filtered (stream, "\n");
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_SGTTY
|
1999-09-22 05:28:34 +02:00
|
|
|
|
fprintf_filtered (stream, "sgttyb.sg_flags = 0x%x.\n",
|
|
|
|
|
state->sgttyb.sg_flags);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
|
fprintf_filtered (stream, "tchars: ");
|
1999-07-07 22:19:36 +02:00
|
|
|
|
for (i = 0; i < (int) sizeof (struct tchars); i++)
|
1999-09-22 05:28:34 +02:00
|
|
|
|
fprintf_filtered (stream, "0x%x ", ((unsigned char *) &state->tc)[i]);
|
2001-02-06 22:39:46 +01:00
|
|
|
|
fprintf_filtered (stream, "\n");
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
|
fprintf_filtered (stream, "ltchars: ");
|
1999-07-07 22:19:36 +02:00
|
|
|
|
for (i = 0; i < (int) sizeof (struct ltchars); i++)
|
1999-09-22 05:28:34 +02:00
|
|
|
|
fprintf_filtered (stream, "0x%x ", ((unsigned char *) &state->ltc)[i]);
|
|
|
|
|
fprintf_filtered (stream, "\n");
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
|
fprintf_filtered (stream, "lmode: 0x%x\n", state->lmode);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-11 22:53:25 +01:00
|
|
|
|
/* Wait for the output to drain away, as opposed to flushing
|
|
|
|
|
(discarding) it. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
static int
|
2001-07-11 19:52:32 +02:00
|
|
|
|
hardwire_drain_output (struct serial *scb)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
#ifdef HAVE_TERMIOS
|
|
|
|
|
return tcdrain (scb->fd);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIO
|
|
|
|
|
return ioctl (scb->fd, TCSBRK, 1);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_SGTTY
|
|
|
|
|
/* Get the current state and then restore it using TIOCSETP,
|
|
|
|
|
which should cause the output to drain and pending input
|
2011-01-11 22:53:25 +01:00
|
|
|
|
to be discarded. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
struct hardwire_ttystate state;
|
2010-05-17 01:49:58 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (get_tty_state (scb, &state))
|
|
|
|
|
{
|
|
|
|
|
return (-1);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return (ioctl (scb->fd, TIOCSETP, &state.sgttyb));
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
#endif
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2001-07-11 19:52:32 +02:00
|
|
|
|
hardwire_flush_output (struct serial *scb)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
#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);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
#endif
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2001-07-11 19:52:32 +02:00
|
|
|
|
hardwire_flush_input (struct serial *scb)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2005-03-25 21:06:36 +01:00
|
|
|
|
ser_base_flush_input (scb);
|
1999-04-16 03:35:26 +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);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
#endif
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2001-07-11 19:52:32 +02:00
|
|
|
|
hardwire_send_break (struct serial *scb)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
#ifdef HAVE_TERMIOS
|
|
|
|
|
return tcsendbreak (scb->fd, 0);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIO
|
|
|
|
|
return ioctl (scb->fd, TCSBRK, 0);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_SGTTY
|
|
|
|
|
{
|
|
|
|
|
int status;
|
|
|
|
|
|
|
|
|
|
status = ioctl (scb->fd, TIOCSBRK, 0);
|
|
|
|
|
|
|
|
|
|
/* Can't use usleep; it doesn't exist in BSD 4.2. */
|
2009-03-24 02:37:48 +01:00
|
|
|
|
/* Note that if this gdb_select() is interrupted by a signal it will not
|
|
|
|
|
wait the full length of time. I think that is OK. */
|
|
|
|
|
gdb_usleep (250000);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
status = ioctl (scb->fd, TIOCCBRK, 0);
|
|
|
|
|
return status;
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
#endif
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2001-07-11 19:52:32 +02:00
|
|
|
|
hardwire_raw (struct serial *scb)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
struct hardwire_ttystate state;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (get_tty_state (scb, &state))
|
2011-01-05 23:22:53 +01:00
|
|
|
|
fprintf_unfiltered (gdb_stderr, "get_tty_state failed: %s\n",
|
|
|
|
|
safe_strerror (errno));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIOS
|
|
|
|
|
state.termios.c_iflag = 0;
|
|
|
|
|
state.termios.c_oflag = 0;
|
|
|
|
|
state.termios.c_lflag = 0;
|
2015-03-23 22:15:42 +01:00
|
|
|
|
state.termios.c_cflag &= ~CSIZE;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
state.termios.c_cflag |= CLOCAL | CS8;
|
2007-05-22 12:57:12 +02:00
|
|
|
|
#ifdef CRTSCTS
|
|
|
|
|
/* h/w flow control. */
|
|
|
|
|
if (serial_hwflow)
|
|
|
|
|
state.termios.c_cflag |= CRTSCTS;
|
|
|
|
|
else
|
|
|
|
|
state.termios.c_cflag &= ~CRTSCTS;
|
|
|
|
|
#ifdef CRTS_IFLOW
|
|
|
|
|
if (serial_hwflow)
|
|
|
|
|
state.termios.c_cflag |= CRTS_IFLOW;
|
|
|
|
|
else
|
|
|
|
|
state.termios.c_cflag &= ~CRTS_IFLOW;
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
1999-04-16 03:35:26 +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;
|
2015-03-23 22:15:42 +01:00
|
|
|
|
state.termio.c_cflag &= ~CSIZE;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
state.termio.c_cflag |= CLOCAL | CS8;
|
|
|
|
|
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);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
scb->current_timeout = 0;
|
|
|
|
|
|
|
|
|
|
if (set_tty_state (scb, &state))
|
2011-01-05 23:22:53 +01:00
|
|
|
|
fprintf_unfiltered (gdb_stderr, "set_tty_state failed: %s\n",
|
|
|
|
|
safe_strerror (errno));
|
1999-04-16 03:35:26 +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
|
2011-01-11 22:53:25 +01:00
|
|
|
|
timeout occur in the read() in hardwire_read(). */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-10-06 01:13:56 +02:00
|
|
|
|
/* FIXME: cagney/1999-09-16: Don't replace this with the equivalent
|
2005-04-21 07:34:33 +02:00
|
|
|
|
ser_base*() until the old TERMIOS/SGTTY/... timer code has been
|
2011-01-11 22:53:25 +01:00
|
|
|
|
flushed. . */
|
1999-10-06 01:13:56 +02:00
|
|
|
|
|
|
|
|
|
/* NOTE: cagney/1999-09-30: Much of the code below is dead. The only
|
|
|
|
|
possible values of the TIMEOUT parameter are ONE and ZERO.
|
|
|
|
|
Consequently all the code that tries to handle the possability of
|
2011-01-11 22:53:25 +01:00
|
|
|
|
an overflowed timer is unnecessary. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
static int
|
2001-07-11 19:52:32 +02:00
|
|
|
|
wait_for (struct serial *scb, int timeout)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
#ifdef HAVE_SGTTY
|
2000-12-02 15:56:20 +01:00
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
struct timeval tv;
|
|
|
|
|
fd_set readfds;
|
|
|
|
|
int numfds;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-12-02 15:56:20 +01:00
|
|
|
|
/* NOTE: Some OS's can scramble the READFDS when the select()
|
|
|
|
|
call fails (ex the kernel with Red Hat 5.2). Initialize all
|
2011-01-11 22:53:25 +01:00
|
|
|
|
arguments before each call. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-12-02 15:56:20 +01:00
|
|
|
|
tv.tv_sec = timeout;
|
|
|
|
|
tv.tv_usec = 0;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-12-02 15:56:20 +01:00
|
|
|
|
FD_ZERO (&readfds);
|
|
|
|
|
FD_SET (scb->fd, &readfds);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-12-02 15:56:20 +01:00
|
|
|
|
if (timeout >= 0)
|
* NEWS: Mention native Windows support.
* Makefile.in (gdb_select_h, ser_tcp_h): New.
(ALLDEPFILES): Add ser-mingw.c.
(event-loop.o, inflow.o, mingw-hdep.o, posix-hdep.o, ser-base.o)
(ser-tcp.o, ser-unix.o): Update.
(ser-mingw.o): New rule.
* configure: Regenerated.
* configure.ac: Add ser-mingw.o for mingw32.
* ser-mingw.c: New file.
* event-loop.c: Include "gdb_select.h".
(gdb_select): Remove, moved to mingw-hdep.c and posix-hdep.c.
* ser-base.c: Include "gdb_select.h".
(ser_base_wait_for): Use gdb_select.
* serial.c (serial_for_fd): New function.
(serial_fdopen): Try "terminal" before "hardwire". Initialize
the allocated struct serial.
(serial_wait_handle): New function.
* serial.h (serial_for_fd, serial_wait_handle): New prototypes.
(struct serial_ops) [USE_WIN32API]: Add wait_handle.
* gdb_select.h: New file.
* ser-tcp.c: Include "ser-tcp.h". Remove unused "ser-unix.h" include.
(net_close, net_read_prim, net_write_prim): Make global.
(net_open): Likewise. Pass an exception set to select. Whitespace fix.
Document why we can not use gdb_select.
(_initialize_ser_tcp) [USE_WIN32API]: Do not register TCP support here.
* ser-tcp.h: New file.
* inflow.c (gdb_has_a_terminal): Don't initialize stdin_serial here.
(handle_sigio): Use gdb_select.
(initialize_stdin_serial): New function.
* terminal.h (initialize_stdin_serial): New prototype.
* top.c (gdb_init): Call initialize_stdin_serial.
* mingw-hdep.c (gdb_select): New function, moved from gdb_select in
event-loop.c. Add exception condition support. Use serial_for_fd
and serial_wait_handle. Fix timeout handling.
* posix-hdep.c: Include "gdb_select.h".
(gdb_select): New function.
* remote-st.c (connect_command): Use gdb_select.
* ser-unix.c: Include "gdb_select.h".
(hardwire_send_break, wait_for): Use gdb_select.
2006-02-10 23:01:43 +01:00
|
|
|
|
numfds = gdb_select (scb->fd + 1, &readfds, 0, 0, &tv);
|
2000-12-02 15:56:20 +01:00
|
|
|
|
else
|
* NEWS: Mention native Windows support.
* Makefile.in (gdb_select_h, ser_tcp_h): New.
(ALLDEPFILES): Add ser-mingw.c.
(event-loop.o, inflow.o, mingw-hdep.o, posix-hdep.o, ser-base.o)
(ser-tcp.o, ser-unix.o): Update.
(ser-mingw.o): New rule.
* configure: Regenerated.
* configure.ac: Add ser-mingw.o for mingw32.
* ser-mingw.c: New file.
* event-loop.c: Include "gdb_select.h".
(gdb_select): Remove, moved to mingw-hdep.c and posix-hdep.c.
* ser-base.c: Include "gdb_select.h".
(ser_base_wait_for): Use gdb_select.
* serial.c (serial_for_fd): New function.
(serial_fdopen): Try "terminal" before "hardwire". Initialize
the allocated struct serial.
(serial_wait_handle): New function.
* serial.h (serial_for_fd, serial_wait_handle): New prototypes.
(struct serial_ops) [USE_WIN32API]: Add wait_handle.
* gdb_select.h: New file.
* ser-tcp.c: Include "ser-tcp.h". Remove unused "ser-unix.h" include.
(net_close, net_read_prim, net_write_prim): Make global.
(net_open): Likewise. Pass an exception set to select. Whitespace fix.
Document why we can not use gdb_select.
(_initialize_ser_tcp) [USE_WIN32API]: Do not register TCP support here.
* ser-tcp.h: New file.
* inflow.c (gdb_has_a_terminal): Don't initialize stdin_serial here.
(handle_sigio): Use gdb_select.
(initialize_stdin_serial): New function.
* terminal.h (initialize_stdin_serial): New prototype.
* top.c (gdb_init): Call initialize_stdin_serial.
* mingw-hdep.c (gdb_select): New function, moved from gdb_select in
event-loop.c. Add exception condition support. Use serial_for_fd
and serial_wait_handle. Fix timeout handling.
* posix-hdep.c: Include "gdb_select.h".
(gdb_select): New function.
* remote-st.c (connect_command): Use gdb_select.
* ser-unix.c: Include "gdb_select.h".
(hardwire_send_break, wait_for): Use gdb_select.
2006-02-10 23:01:43 +01:00
|
|
|
|
numfds = gdb_select (scb->fd + 1, &readfds, 0, 0, 0);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-12-02 15:56:20 +01:00
|
|
|
|
if (numfds <= 0)
|
|
|
|
|
if (numfds == 0)
|
|
|
|
|
return SERIAL_TIMEOUT;
|
|
|
|
|
else if (errno == EINTR)
|
|
|
|
|
continue;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
else
|
2011-01-11 22:53:25 +01:00
|
|
|
|
return SERIAL_ERROR; /* Got an error from select or poll. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-12-02 15:56:20 +01:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
#endif /* HAVE_SGTTY */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
#if defined HAVE_TERMIO || defined HAVE_TERMIOS
|
|
|
|
|
if (timeout == scb->current_timeout)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
scb->current_timeout = timeout;
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
struct hardwire_ttystate state;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (get_tty_state (scb, &state))
|
2011-01-05 23:22:53 +01:00
|
|
|
|
fprintf_unfiltered (gdb_stderr, "get_tty_state failed: %s\n",
|
|
|
|
|
safe_strerror (errno));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIOS
|
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIO
|
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
/* 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.termio.c_cc[VTIME] = scb->current_timeout * 10;
|
|
|
|
|
scb->timeout_remaining = timeout - scb->current_timeout;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (set_tty_state (scb, &state))
|
2011-01-05 23:22:53 +01:00
|
|
|
|
fprintf_unfiltered (gdb_stderr, "set_tty_state failed: %s\n",
|
|
|
|
|
safe_strerror (errno));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
#endif /* HAVE_TERMIO || HAVE_TERMIOS */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-01-05 23:22:53 +01: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 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). */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
|
|
|
|
/* FIXME: cagney/1999-09-16: Don't replace this with the equivalent
|
2005-04-21 07:34:33 +02:00
|
|
|
|
ser_base*() until the old TERMIOS/SGTTY/... timer code has been
|
2011-01-11 22:53:25 +01:00
|
|
|
|
flushed. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
|
|
|
|
/* NOTE: cagney/1999-09-16: This function is not identical to
|
2005-04-21 07:34:33 +02:00
|
|
|
|
ser_base_readchar() as part of replacing it with ser_base*()
|
1999-09-22 05:28:34 +02:00
|
|
|
|
merging will be required - this code handles the case where read()
|
2005-04-21 07:34:33 +02:00
|
|
|
|
times out due to no data while ser_base_readchar() doesn't expect
|
2011-01-11 22:53:25 +01:00
|
|
|
|
that. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
static int
|
2001-07-11 19:52:32 +02:00
|
|
|
|
do_hardwire_readchar (struct serial *scb, int timeout)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-04-26 20:34:20 +02:00
|
|
|
|
int status, delta;
|
|
|
|
|
int detach = 0;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (timeout > 0)
|
|
|
|
|
timeout++;
|
|
|
|
|
|
2005-01-14 02:59:20 +01:00
|
|
|
|
/* We have to be able to keep the GUI alive here, so we break the
|
|
|
|
|
original timeout into steps of 1 second, running the "keep the
|
|
|
|
|
GUI alive" hook each time through the loop.
|
|
|
|
|
|
|
|
|
|
Also, timeout = 0 means to poll, so we just set the delta to 0,
|
|
|
|
|
so we will only go through the loop once. */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-26 20:34:20 +02:00
|
|
|
|
delta = (timeout == 0 ? 0 : 1);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
|
1999-04-26 20:34:20 +02:00
|
|
|
|
/* N.B. The UI may destroy our world (for instance by calling
|
|
|
|
|
remote_stop,) in which case we want to get out of here as
|
|
|
|
|
quickly as possible. It is not safe to touch scb, since
|
2004-06-25 21:46:08 +02:00
|
|
|
|
someone else might have freed it. The
|
|
|
|
|
deprecated_ui_loop_hook signals that we should exit by
|
|
|
|
|
returning 1. */
|
1999-04-26 20:34:20 +02:00
|
|
|
|
|
2004-06-25 21:46:08 +02:00
|
|
|
|
if (deprecated_ui_loop_hook)
|
|
|
|
|
detach = deprecated_ui_loop_hook (0);
|
1999-04-26 20:34:20 +02:00
|
|
|
|
|
|
|
|
|
if (detach)
|
|
|
|
|
return SERIAL_TIMEOUT;
|
|
|
|
|
|
|
|
|
|
scb->timeout_remaining = (timeout < 0 ? timeout : timeout - delta);
|
|
|
|
|
status = wait_for (scb, delta);
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (status < 0)
|
|
|
|
|
return status;
|
|
|
|
|
|
1999-10-06 01:13:56 +02:00
|
|
|
|
status = read (scb->fd, scb->buf, BUFSIZ);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-10-06 01:13:56 +02:00
|
|
|
|
if (status <= 0)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-10-06 01:13:56 +02:00
|
|
|
|
if (status == 0)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
/* Zero characters means timeout (it could also be EOF, but
|
1999-07-07 22:19:36 +02:00
|
|
|
|
we don't (yet at least) distinguish). */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (scb->timeout_remaining > 0)
|
|
|
|
|
{
|
|
|
|
|
timeout = scb->timeout_remaining;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
else if (scb->timeout_remaining < 0)
|
|
|
|
|
continue;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
else
|
|
|
|
|
return SERIAL_TIMEOUT;
|
|
|
|
|
}
|
|
|
|
|
else if (errno == EINTR)
|
|
|
|
|
continue;
|
|
|
|
|
else
|
2011-01-05 23:22:53 +01:00
|
|
|
|
return SERIAL_ERROR; /* Got an error from read. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
1999-10-06 01:13:56 +02:00
|
|
|
|
scb->bufcnt = status;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
scb->bufcnt--;
|
|
|
|
|
scb->bufp = scb->buf;
|
|
|
|
|
return *scb->bufp++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-10-06 01:13:56 +02:00
|
|
|
|
static int
|
2001-07-11 19:52:32 +02:00
|
|
|
|
hardwire_readchar (struct serial *scb, int timeout)
|
1999-10-06 01:13:56 +02:00
|
|
|
|
{
|
|
|
|
|
return generic_readchar (scb, timeout, do_hardwire_readchar);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-04-16 03:35:26 +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[] =
|
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
{
|
|
|
|
|
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
|
|
|
|
|
}
|
|
|
|
|
,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#ifdef B57600
|
1999-07-07 22:19:36 +02:00
|
|
|
|
{
|
|
|
|
|
57600, B57600
|
|
|
|
|
}
|
|
|
|
|
,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef B115200
|
1999-07-07 22:19:36 +02:00
|
|
|
|
{
|
|
|
|
|
115200, B115200
|
|
|
|
|
}
|
|
|
|
|
,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef B230400
|
1999-07-07 22:19:36 +02:00
|
|
|
|
{
|
|
|
|
|
230400, B230400
|
|
|
|
|
}
|
|
|
|
|
,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef B460800
|
1999-07-07 22:19:36 +02:00
|
|
|
|
{
|
|
|
|
|
460800, B460800
|
|
|
|
|
}
|
|
|
|
|
,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#endif
|
1999-07-07 22:19:36 +02:00
|
|
|
|
{
|
|
|
|
|
-1, -1
|
|
|
|
|
}
|
|
|
|
|
,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
};
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
static int
|
1999-09-22 05:28:34 +02:00
|
|
|
|
rate_to_code (int rate)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; baudtab[i].rate != -1; i++)
|
2001-05-11 20:34:13 +02:00
|
|
|
|
{
|
2011-01-11 22:53:25 +01:00
|
|
|
|
/* test for perfect macth. */
|
2001-05-11 20:34:13 +02:00
|
|
|
|
if (rate == baudtab[i].rate)
|
|
|
|
|
return baudtab[i].code;
|
|
|
|
|
else
|
|
|
|
|
{
|
2011-01-11 22:53:25 +01:00
|
|
|
|
/* check if it is in between valid values. */
|
2001-05-11 20:34:13 +02:00
|
|
|
|
if (rate < baudtab[i].rate)
|
|
|
|
|
{
|
|
|
|
|
if (i)
|
|
|
|
|
{
|
2011-01-05 23:22:53 +01:00
|
|
|
|
warning (_("Invalid baud rate %d. "
|
|
|
|
|
"Closest values are %d and %d."),
|
|
|
|
|
rate, baudtab[i - 1].rate, baudtab[i].rate);
|
2001-05-11 20:34:13 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2005-02-10 Andrew Cagney <cagney@gnu.org>
Mark up all error and warning messages.
* ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
* bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
* core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
* cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
* dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
* dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
* event-top.c, exec.c, expprint.c, f-lang.c: Update.
* f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
* frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
* gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
* hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
* hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
* hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
* i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
* ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
* inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
* kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
* m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
* m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
* maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
* nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
* observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
* p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
* ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
* remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
* remote-rdp.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote-utils.h, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
* ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
* sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
* solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
* solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
* somread.c, somsolib.c, source.c, stabsread.c: Update.
* stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
* symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
* tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
* uw-thread.c, valarith.c, valops.c, valprint.c: Update.
* value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
* xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
* cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
* mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
* mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
* mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
* tui/tui-win.c: Update.
2005-02-11 05:06:14 +01:00
|
|
|
|
warning (_("Invalid baud rate %d. Minimum value is %d."),
|
2011-01-05 23:22:53 +01:00
|
|
|
|
rate, baudtab[0].rate);
|
2001-05-11 20:34:13 +02:00
|
|
|
|
}
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-11 22:53:25 +01:00
|
|
|
|
/* The requested speed was too large. */
|
2005-02-10 Andrew Cagney <cagney@gnu.org>
Mark up all error and warning messages.
* ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
* bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
* core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
* cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
* dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
* dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
* event-top.c, exec.c, expprint.c, f-lang.c: Update.
* f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
* frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
* gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
* hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
* hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
* hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
* i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
* ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
* inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
* kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
* m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
* m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
* maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
* nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
* observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
* p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
* ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
* remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
* remote-rdp.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote-utils.h, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
* ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
* sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
* solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
* solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
* somread.c, somsolib.c, source.c, stabsread.c: Update.
* stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
* symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
* tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
* uw-thread.c, valarith.c, valops.c, valprint.c: Update.
* value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
* xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
* cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
* mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
* mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
* mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
* tui/tui-win.c: Update.
2005-02-11 05:06:14 +01:00
|
|
|
|
warning (_("Invalid baud rate %d. Maximum value is %d."),
|
2001-05-11 20:34:13 +02:00
|
|
|
|
rate, baudtab[i - 1].rate);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2001-07-11 19:52:32 +02:00
|
|
|
|
hardwire_setbaudrate (struct serial *scb, int rate)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
struct hardwire_ttystate state;
|
2001-05-11 20:34:13 +02:00
|
|
|
|
int baud_code = rate_to_code (rate);
|
|
|
|
|
|
|
|
|
|
if (baud_code < 0)
|
|
|
|
|
{
|
|
|
|
|
/* The baud rate was not valid.
|
2011-01-11 22:53:25 +01:00
|
|
|
|
A warning has already been issued. */
|
2001-05-11 20:34:13 +02:00
|
|
|
|
errno = EINVAL;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (get_tty_state (scb, &state))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIOS
|
2001-05-11 20:34:13 +02:00
|
|
|
|
cfsetospeed (&state.termios, baud_code);
|
|
|
|
|
cfsetispeed (&state.termios, baud_code);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIO
|
|
|
|
|
#ifndef CIBAUD
|
|
|
|
|
#define CIBAUD CBAUD
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
state.termio.c_cflag &= ~(CBAUD | CIBAUD);
|
2001-05-11 20:34:13 +02:00
|
|
|
|
state.termio.c_cflag |= baud_code;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_SGTTY
|
2001-05-11 20:34:13 +02:00
|
|
|
|
state.sgttyb.sg_ispeed = baud_code;
|
|
|
|
|
state.sgttyb.sg_ospeed = baud_code;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
return set_tty_state (scb, &state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2001-07-11 19:52:32 +02:00
|
|
|
|
hardwire_setstopbits (struct serial *scb, int num)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
struct hardwire_ttystate state;
|
|
|
|
|
int newbit;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
if (get_tty_state (scb, &state))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
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
|
1999-07-07 22:19:36 +02:00
|
|
|
|
state.termios.c_cflag |= CSTOPB; /* two bits */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIO
|
|
|
|
|
if (!newbit)
|
|
|
|
|
state.termio.c_cflag &= ~CSTOPB;
|
|
|
|
|
else
|
1999-07-07 22:19:36 +02:00
|
|
|
|
state.termio.c_cflag |= CSTOPB; /* two bits */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_SGTTY
|
|
|
|
|
return 0; /* sgtty doesn't support this */
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
return set_tty_state (scb, &state);
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-23 22:15:42 +01:00
|
|
|
|
/* Implement the "setparity" serial_ops callback. */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
hardwire_setparity (struct serial *scb, int parity)
|
|
|
|
|
{
|
|
|
|
|
struct hardwire_ttystate state;
|
|
|
|
|
int newparity = 0;
|
|
|
|
|
|
|
|
|
|
if (get_tty_state (scb, &state))
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
switch (parity)
|
|
|
|
|
{
|
|
|
|
|
case GDBPARITY_NONE:
|
|
|
|
|
newparity = 0;
|
|
|
|
|
break;
|
|
|
|
|
case GDBPARITY_ODD:
|
|
|
|
|
newparity = PARENB | PARODD;
|
|
|
|
|
break;
|
|
|
|
|
case GDBPARITY_EVEN:
|
|
|
|
|
newparity = PARENB;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
internal_warning (__FILE__, __LINE__,
|
2015-03-23 23:42:23 +01:00
|
|
|
|
"Incorrect parity value: %d", parity);
|
2015-03-23 22:15:42 +01:00
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIOS
|
|
|
|
|
state.termios.c_cflag &= ~(PARENB | PARODD);
|
|
|
|
|
state.termios.c_cflag |= newparity;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIO
|
|
|
|
|
state.termio.c_cflag &= ~(PARENB | PARODD);
|
|
|
|
|
state.termio.c_cflag |= newparity;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_SGTTY
|
|
|
|
|
return 0; /* sgtty doesn't support this */
|
|
|
|
|
#endif
|
|
|
|
|
return set_tty_state (scb, &state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
static void
|
2001-07-11 19:52:32 +02:00
|
|
|
|
hardwire_close (struct serial *scb)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
if (scb->fd < 0)
|
|
|
|
|
return;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
close (scb->fd);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
scb->fd = -1;
|
|
|
|
|
}
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
1999-10-06 01:13:56 +02:00
|
|
|
|
|
2010-05-17 01:49:58 +02:00
|
|
|
|
|
2013-12-06 19:34:49 +01:00
|
|
|
|
/* The hardwire ops. */
|
|
|
|
|
|
|
|
|
|
static const struct serial_ops hardwire_ops =
|
|
|
|
|
{
|
|
|
|
|
"hardwire",
|
|
|
|
|
hardwire_open,
|
|
|
|
|
hardwire_close,
|
|
|
|
|
NULL,
|
2005-04-21 07:34:33 +02:00
|
|
|
|
/* FIXME: Don't replace this with the equivalent ser_base*() until
|
2011-01-11 22:53:25 +01:00
|
|
|
|
the old TERMIOS/SGTTY/... timer code has been flushed. cagney
|
|
|
|
|
1999-09-16. */
|
2013-12-06 19:34:49 +01:00
|
|
|
|
hardwire_readchar,
|
|
|
|
|
ser_base_write,
|
|
|
|
|
hardwire_flush_output,
|
|
|
|
|
hardwire_flush_input,
|
|
|
|
|
hardwire_send_break,
|
|
|
|
|
hardwire_raw,
|
|
|
|
|
hardwire_get_tty_state,
|
|
|
|
|
hardwire_copy_tty_state,
|
|
|
|
|
hardwire_set_tty_state,
|
|
|
|
|
hardwire_print_tty_state,
|
|
|
|
|
hardwire_noflush_set_tty_state,
|
|
|
|
|
hardwire_setbaudrate,
|
|
|
|
|
hardwire_setstopbits,
|
2015-03-23 22:15:42 +01:00
|
|
|
|
hardwire_setparity,
|
2013-12-06 19:34:49 +01:00
|
|
|
|
hardwire_drain_output,
|
|
|
|
|
ser_base_async,
|
|
|
|
|
ser_unix_read_prim,
|
|
|
|
|
ser_unix_write_prim
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
_initialize_ser_hardwire (void)
|
|
|
|
|
{
|
|
|
|
|
serial_add_interface (&hardwire_ops);
|
2007-05-22 12:57:12 +02:00
|
|
|
|
|
|
|
|
|
#ifdef HAVE_TERMIOS
|
|
|
|
|
#ifdef CRTSCTS
|
|
|
|
|
add_setshow_boolean_cmd ("remoteflow", no_class,
|
|
|
|
|
&serial_hwflow, _("\
|
|
|
|
|
Set use of hardware flow control for remote serial I/O."), _("\
|
|
|
|
|
Show use of hardware flow control for remote serial I/O."), _("\
|
|
|
|
|
Enable or disable hardware flow control (RTS/CTS) on the serial port\n\
|
|
|
|
|
when debugging using remote targets."),
|
|
|
|
|
NULL,
|
|
|
|
|
show_serial_hwflow,
|
|
|
|
|
&setlist, &showlist);
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
2005-04-21 07:34:33 +02:00
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
ser_unix_read_prim (struct serial *scb, size_t count)
|
|
|
|
|
{
|
|
|
|
|
int status;
|
|
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
status = read (scb->fd, scb->buf, count);
|
|
|
|
|
if (status != -1 || errno != EINTR)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
ser_unix_write_prim (struct serial *scb, const void *buf, size_t len)
|
|
|
|
|
{
|
|
|
|
|
/* ??? Historically, GDB has not retried calls to "write" that
|
|
|
|
|
result in EINTR. */
|
|
|
|
|
return write (scb->fd, buf, len);
|
|
|
|
|
}
|