1999-04-16 09:35:26 +08:00
|
|
|
/* Remote serial support interface definitions for GDB, the GNU Debugger.
|
2019-01-01 14:01:51 +08:00
|
|
|
Copyright (C) 1992-2019 Free Software Foundation, Inc.
|
1999-04-16 09:35:26 +08:00
|
|
|
|
1999-07-08 04:19:36 +08:00
|
|
|
This file is part of GDB.
|
1999-04-16 09:35:26 +08:00
|
|
|
|
1999-07-08 04:19:36 +08: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-24 02:08:50 +08:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
1999-07-08 04:19:36 +08:00
|
|
|
(at your option) any later version.
|
1999-04-16 09:35:26 +08:00
|
|
|
|
1999-07-08 04:19:36 +08: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 09:35:26 +08:00
|
|
|
|
1999-07-08 04:19:36 +08:00
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-24 02:08:50 +08:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
|
|
#ifndef SERIAL_H
|
|
|
|
#define SERIAL_H
|
|
|
|
|
* 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-11 06:01:43 +08:00
|
|
|
#ifdef USE_WIN32API
|
2010-03-31 02:08:04 +08:00
|
|
|
#include <winsock2.h>
|
* 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-11 06:01:43 +08:00
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2003-04-12 Andrew Cagney <cagney@redhat.com>
* gdbarch.sh: Add missing opaque declarations.
* gdbarch.h: Regnerate.
* symtab.h: Add missing opaque declarations.
* value.h, target.h, symfile.h, stabsread.h: Ditto.
* x86-64-tdep.h, xmodem.h, monitor.h, typeprint.h: Ditto.
* srec.h, solib-svr4.h, source.h, inferior.h: Ditto.
* ser-unix.h, serial.h, remote-utils.h, gdbcore.h: Ditto.
* ppc-tdep.h, ocd.h, mips-tdep.h, gdbtypes.h: Ditto.
* buildsym.h, builtin-regs.h, linespec.h, language.h: Ditto.
* i387-tdep.h, gdbthread.h, event-top.h, gdb.h: Ditto.
* dwarf2cfi.h, doublest.h, disasm.h, cp-abi.h: Ditto.
* cli-out.h, c-lang.h, ax-gdb.h, arch-utils.h: Ditto.
* ada-lang.h, config/nm-lynx.h, config/nm-linux.h: Ditto.
* config/sparc/tm-sp64.h, config/rs6000/tm-rs6000.h: Ditto.
* config/pa/tm-hppah.h, config/m68k/tm-delta68.h: Ditto.
* cli/cli-setshow.h, cli/cli-script.h: Ditto.
2003-04-13 01:41:26 +08:00
|
|
|
struct ui_file;
|
|
|
|
|
1999-09-22 11:28:34 +08:00
|
|
|
/* For most routines, if a failure is indicated, then errno should be
|
|
|
|
examined. */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
1999-09-22 11:28:34 +08:00
|
|
|
/* Terminal state pointer. This is specific to each type of
|
2005-01-14 09:59:20 +08:00
|
|
|
interface. */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
1999-09-22 11:28:34 +08:00
|
|
|
typedef void *serial_ttystate;
|
2001-07-09 22:38:49 +08:00
|
|
|
struct serial;
|
Introduce a serial interface for select'able events
This patch adds a new "event" struct serial type, that is an
abstraction specifically for waking up blocking waits/selects,
implemented on top of a pipe on POSIX, and on top of a native Windows
event (CreateEvent, etc.) on Windows.
This will be used to plug signal handler / mainline code races.
For example, GDB can indefinitely delay handling a quit request if the
user presses Ctrl-C between the last QUIT call and the next (blocking)
gdb_select call in the event loop:
QUIT;
<<< press ctrl-c here and end up blocked in gdb_select
indefinitely.
gdb_select (...); // whoops, SIGINT was already handled, no EINTR.
A global alone (either the quit flag, or the "ready" flag of the async
signal handlers in the event loop) is not sufficient.
To plug races such as these on POSIX systems, we have to register some
waitable file descriptor in the set of files gdb_select waits on, and
write to it from the signal handler. This is classically a pipe, and
the pattern called the self-pipe trick. On Linux, it could be a more
efficient eventfd instead, but I'm sticking with a pipe for
simplifity, as we need it for portability anyway.
(Alternatively, we could use pselect/ppoll, and block signals until
the pselect. The latter is not a design I think GDB could use,
because we want the QUIT macro to be super cheap, as it is used in
loops. Plus, Windows.)
This is a "struct serial" because Windows's gdb_select relies on that.
Windows's gdb_select, our "select" replacement, knows how to wait on
all kinds of handles (regular files, pipes, sockets, console, etc.)
unlike the native Windows "select" function, which can only wait on
sockets. Each file descriptor for a "serial" type that is not
normally waitable with WaitForMultipleObjects must have a
corresponding struct serial instance. gdb_select then internally
looks up the struct serial instance that wraps each file descriptor,
and asks it for the corresponding Windows waitable handle.
We could use serial_pipe() to create a "struct serial"-wrapped pipe
that is usable everywhere, including Windows. That's what currently
python/python.c uses for cross-thread posting of events.
However, serial_write and serial_readchar are not designed to be
async-signal-safe on POSIX hosts. It's easier to bypass those when
setting/clearing the event source.
And writing and a serial pipe is a bit heavy weight on Windows.
gdb_select requires an extra thread to wait on the pipe and several
Windows events, when a single manual-reset Windows event, with no
extra thread is sufficient.
The intended usage is simply:
- Call make_serial_event to create a serial event object.
- From the signal handler call serial_event_set to set the event.
- From mainline code, have select/poll wait for serial_event_fd(), in
addition to whatever other files you're about to wait for.
gdb/ChangeLog:
2016-04-12 Pedro Alves <palves@redhat.com>
* Makefile.in (SFILES): Add ser-event.c.
(HFILES_NO_SRCDIR): Add ser-event.h.
(COMMON_OBS): Add ser-event.o.
* ser-event.c, ser-event.h: New files.
* serial.c (new_serial): New function, factored out from
(serial_fdopen_ops): ... this.
(serial_open_ops_1): New function, factored out from
(serial_open): ... this.
(serial_open_ops): New function.
* serial.h (struct serial): Forware declare.
(serial_open_ops): New declaration.
2016-04-12 23:49:30 +08:00
|
|
|
struct serial_ops;
|
|
|
|
|
|
|
|
/* Create a new serial for OPS. The new serial is not opened. */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
/* Try to open NAME. Returns a new `struct serial *' on success, NULL
|
2012-06-12 04:36:53 +08:00
|
|
|
on failure. The new serial object has a reference count of 1.
|
|
|
|
Note that some open calls can block and, if possible, should be
|
|
|
|
written to be non-blocking, with calls to ui_look_hook so they can
|
|
|
|
be cancelled. An async interface for open could be added to GDB if
|
|
|
|
necessary. */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
extern struct serial *serial_open (const char *name);
|
1999-04-16 09:35:26 +08:00
|
|
|
|
Introduce a serial interface for select'able events
This patch adds a new "event" struct serial type, that is an
abstraction specifically for waking up blocking waits/selects,
implemented on top of a pipe on POSIX, and on top of a native Windows
event (CreateEvent, etc.) on Windows.
This will be used to plug signal handler / mainline code races.
For example, GDB can indefinitely delay handling a quit request if the
user presses Ctrl-C between the last QUIT call and the next (blocking)
gdb_select call in the event loop:
QUIT;
<<< press ctrl-c here and end up blocked in gdb_select
indefinitely.
gdb_select (...); // whoops, SIGINT was already handled, no EINTR.
A global alone (either the quit flag, or the "ready" flag of the async
signal handlers in the event loop) is not sufficient.
To plug races such as these on POSIX systems, we have to register some
waitable file descriptor in the set of files gdb_select waits on, and
write to it from the signal handler. This is classically a pipe, and
the pattern called the self-pipe trick. On Linux, it could be a more
efficient eventfd instead, but I'm sticking with a pipe for
simplifity, as we need it for portability anyway.
(Alternatively, we could use pselect/ppoll, and block signals until
the pselect. The latter is not a design I think GDB could use,
because we want the QUIT macro to be super cheap, as it is used in
loops. Plus, Windows.)
This is a "struct serial" because Windows's gdb_select relies on that.
Windows's gdb_select, our "select" replacement, knows how to wait on
all kinds of handles (regular files, pipes, sockets, console, etc.)
unlike the native Windows "select" function, which can only wait on
sockets. Each file descriptor for a "serial" type that is not
normally waitable with WaitForMultipleObjects must have a
corresponding struct serial instance. gdb_select then internally
looks up the struct serial instance that wraps each file descriptor,
and asks it for the corresponding Windows waitable handle.
We could use serial_pipe() to create a "struct serial"-wrapped pipe
that is usable everywhere, including Windows. That's what currently
python/python.c uses for cross-thread posting of events.
However, serial_write and serial_readchar are not designed to be
async-signal-safe on POSIX hosts. It's easier to bypass those when
setting/clearing the event source.
And writing and a serial pipe is a bit heavy weight on Windows.
gdb_select requires an extra thread to wait on the pipe and several
Windows events, when a single manual-reset Windows event, with no
extra thread is sufficient.
The intended usage is simply:
- Call make_serial_event to create a serial event object.
- From the signal handler call serial_event_set to set the event.
- From mainline code, have select/poll wait for serial_event_fd(), in
addition to whatever other files you're about to wait for.
gdb/ChangeLog:
2016-04-12 Pedro Alves <palves@redhat.com>
* Makefile.in (SFILES): Add ser-event.c.
(HFILES_NO_SRCDIR): Add ser-event.h.
(COMMON_OBS): Add ser-event.o.
* ser-event.c, ser-event.h: New files.
* serial.c (new_serial): New function, factored out from
(serial_fdopen_ops): ... this.
(serial_open_ops_1): New function, factored out from
(serial_open): ... this.
(serial_open_ops): New function.
* serial.h (struct serial): Forware declare.
(serial_open_ops): New declaration.
2016-04-12 23:49:30 +08:00
|
|
|
/* Open a new serial stream using OPS. */
|
|
|
|
|
|
|
|
extern struct serial *serial_open_ops (const struct serial_ops *ops);
|
|
|
|
|
2012-06-12 04:36:53 +08:00
|
|
|
/* Returns true if SCB is open. */
|
|
|
|
|
|
|
|
extern int serial_is_open (struct serial *scb);
|
|
|
|
|
* 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-11 06:01:43 +08:00
|
|
|
/* Find an already opened serial stream using a file handle. */
|
|
|
|
|
|
|
|
extern struct serial *serial_for_fd (int fd);
|
|
|
|
|
1999-09-22 11:28:34 +08:00
|
|
|
/* Open a new serial stream using a file handle. */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
extern struct serial *serial_fdopen (const int fd);
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2012-06-12 04:36:53 +08:00
|
|
|
/* Push out all buffers, close the device and unref SCB. */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
extern void serial_close (struct serial *scb);
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2012-06-12 04:36:53 +08:00
|
|
|
/* Increment reference count of SCB. */
|
|
|
|
|
|
|
|
extern void serial_ref (struct serial *scb);
|
|
|
|
|
|
|
|
/* Decrement reference count of SCB. */
|
|
|
|
|
|
|
|
extern void serial_unref (struct serial *scb);
|
|
|
|
|
2016-05-04 06:54:45 +08:00
|
|
|
/* Create a pipe, and put the read end in FILDES[0], and the write end
|
|
|
|
in FILDES[1]. Returns 0 for success, negative value for error (in
|
2010-08-21 02:49:20 +08:00
|
|
|
which case errno contains the error). */
|
|
|
|
|
|
|
|
extern int gdb_pipe (int fildes[2]);
|
|
|
|
|
|
|
|
/* Create a pipe with each end wrapped in a `struct serial' interface.
|
|
|
|
Put the read end in scbs[0], and the write end in scbs[1]. Returns
|
|
|
|
0 for success, negative value for error (in which case errno
|
|
|
|
contains the error). */
|
|
|
|
|
|
|
|
extern int serial_pipe (struct serial *scbs[2]);
|
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
/* Push out all buffers and destroy SCB without closing the device. */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
extern void serial_un_fdopen (struct serial *scb);
|
1999-04-16 09:35:26 +08:00
|
|
|
|
1999-09-22 11:28:34 +08:00
|
|
|
/* Read one char from the serial device with TIMEOUT seconds to wait
|
1999-10-12 12:37:53 +08:00
|
|
|
or -1 to wait forever. Use timeout of 0 to effect a poll.
|
2011-01-12 05:53:25 +08:00
|
|
|
Infinite waits are not permitted. Returns unsigned char if ok, else
|
1999-10-12 12:37:53 +08:00
|
|
|
one of the following codes. Note that all error return-codes are
|
2005-01-14 09:59:20 +08:00
|
|
|
guaranteed to be < 0. */
|
1999-10-06 07:13:56 +08:00
|
|
|
|
|
|
|
enum serial_rc {
|
2005-01-14 09:59:20 +08:00
|
|
|
SERIAL_ERROR = -1, /* General error. */
|
1999-10-12 12:37:53 +08:00
|
|
|
SERIAL_TIMEOUT = -2, /* Timeout or data-not-ready during read.
|
2004-06-26 03:46:08 +08:00
|
|
|
Unfortunately, through
|
2005-01-14 09:59:20 +08:00
|
|
|
deprecated_ui_loop_hook (), this can also
|
|
|
|
be a QUIT indication. */
|
1999-10-06 07:13:56 +08:00
|
|
|
SERIAL_EOF = -3 /* General end-of-file or remote target
|
|
|
|
connection closed, indication. Includes
|
2005-01-14 09:59:20 +08:00
|
|
|
things like the line dropping dead. */
|
1999-10-06 07:13:56 +08:00
|
|
|
};
|
1999-09-22 11:28:34 +08:00
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
extern int serial_readchar (struct serial *scb, int timeout);
|
1999-09-22 11:28:34 +08:00
|
|
|
|
serial_write: change prototype to take a void-pointer buffer.
While remote.c works with "char *" buffers most of the time, other
remote targets have binary-ish-er protocols, and choose to use
"unsigned char" throughout, like e.g., remote-mips.c or
remote-m32r-sdi.c. That results in -Wpointer-sign warnings in those
targets, unless we add casts in calls to serial_write. Since
serial_write is only concerned about sending raw host bytes out, and
serial_ops->write_prim already works with "void *"/"size_t", a similar
interface to the "write" or "send" system calls, I find it natural to
change serial_write's prototype accordingly, avoiding the need for
casts.
Tested on x86_64 Fedora 17, and also by building x86_64-mingw32
and DJGPP/go32 -hosted gdbs.
gdb/
2013-04-19 Pedro Alves <palves@redhat.com>
* ser-base.c (ser_base_write): Change prototype -- take 'void *'
buffer and size_t size. Adjust.
* ser-base.h (ser_base_write): Adjust.
* ser-go32.c (cnts): Change type to size_t.
(dos_write): Change prototype -- take 'void *'
buffer and size_t size. Adjust.
(dos_info): Print elements of 'cnts' as unsigned long.
* serial.c (serial_write): Likewise.
* serial.h (serial_write): Adjust.
(struct serial_ops) <write>: Change prototype -- take 'void *'
buffer and size_t size. Adjust.
2013-04-19 23:26:17 +08:00
|
|
|
/* Write COUNT bytes from BUF to the port SCB. Returns 0 for
|
1999-09-22 11:28:34 +08:00
|
|
|
success, non-zero for failure. */
|
|
|
|
|
serial_write: change prototype to take a void-pointer buffer.
While remote.c works with "char *" buffers most of the time, other
remote targets have binary-ish-er protocols, and choose to use
"unsigned char" throughout, like e.g., remote-mips.c or
remote-m32r-sdi.c. That results in -Wpointer-sign warnings in those
targets, unless we add casts in calls to serial_write. Since
serial_write is only concerned about sending raw host bytes out, and
serial_ops->write_prim already works with "void *"/"size_t", a similar
interface to the "write" or "send" system calls, I find it natural to
change serial_write's prototype accordingly, avoiding the need for
casts.
Tested on x86_64 Fedora 17, and also by building x86_64-mingw32
and DJGPP/go32 -hosted gdbs.
gdb/
2013-04-19 Pedro Alves <palves@redhat.com>
* ser-base.c (ser_base_write): Change prototype -- take 'void *'
buffer and size_t size. Adjust.
* ser-base.h (ser_base_write): Adjust.
* ser-go32.c (cnts): Change type to size_t.
(dos_write): Change prototype -- take 'void *'
buffer and size_t size. Adjust.
(dos_info): Print elements of 'cnts' as unsigned long.
* serial.c (serial_write): Likewise.
* serial.h (serial_write): Adjust.
(struct serial_ops) <write>: Change prototype -- take 'void *'
buffer and size_t size. Adjust.
2013-04-19 23:26:17 +08:00
|
|
|
extern int serial_write (struct serial *scb, const void *buf, size_t count);
|
1999-09-22 11:28:34 +08:00
|
|
|
|
2005-01-14 09:59:20 +08:00
|
|
|
/* Write a printf style string onto the serial port. */
|
1999-09-22 11:28:34 +08:00
|
|
|
|
2005-01-14 09:59:20 +08:00
|
|
|
extern void serial_printf (struct serial *desc,
|
gdb/
* ada-lang.c (lim_warning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
* amd64-tdep.c (amd64_insn_length_fprintf): Likewise.
* cli-out.c (cli_field_fmt): New ATTRIBUTE_PRINTF.
(cli_message, out_field_fmt): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
* complaints.c (find_complaint): New ATTRIBUTE_PRINTF.
(vcomplaint): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
* complaints.h (complaint, internal_complaint): Likewise.
* defs.h: Change ATTR_FORMAT to ATTRIBUTE_PRINTF in the top comment.
(ATTR_FORMAT): Remove.
(query, nquery, yquery, vprintf_filtered, vfprintf_filtered)
(fprintf_filtered, fprintfi_filtered, printf_filtered, printfi_filtered)
(vprintf_unfiltered, vfprintf_unfiltered, fprintf_unfiltered)
(printf_unfiltered, xasprintf, xvasprintf, xstrprintf, xstrvprintf)
(xsnprintf, verror, error, vfatal, fatal, internal_verror)
(internal_error, internal_vwarning, internal_warning, warning)
(vwarning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
* disasm.c (fprintf_disasm): Likewise.
* exceptions.c (throw_it): Likewise.
* exceptions.h (exception_fprintf, throw_verror, throw_vfatal)
(throw_error): Likewise.
* language.h (type_error, range_error): Likewise.
* linespec.c (cplusplus_error): Likewise.
* mi/mi-interp.c (mi_interp_query_hook): Likewise.
* mi/mi-out.c (mi_field_fmt, mi_message): Likewise.
* monitor.c (monitor_debug): Likewise.
* parser-defs.h (parser_fprintf): Likewise.
* serial.h (serial_printf): Likewise.
* tui/tui-hooks.c (tui_query_hook): Likewise.
* ui-out.c (default_field_fmt, default_message, uo_field_fmt)
(uo_message): Likewise.
* ui-out.h (ui_out_field_fmt, ui_out_message): Likewise.
* utils.c (vfprintf_maybe_filtered, internal_vproblem, defaulted_query):
Likewise.
* xml-support.h (gdb_xml_debug, gdb_xml_error): Likewise.
2010-05-03 05:14:59 +08:00
|
|
|
const char *,...) ATTRIBUTE_PRINTF (2, 3);
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2005-01-14 09:59:20 +08:00
|
|
|
/* Allow pending output to drain. */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
extern int serial_drain_output (struct serial *);
|
1999-07-08 04:19:36 +08:00
|
|
|
|
1999-09-22 11:28:34 +08:00
|
|
|
/* Flush (discard) pending output. Might also flush input (if this
|
|
|
|
system can't flush only output). */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
extern int serial_flush_output (struct serial *);
|
1999-04-16 09:35:26 +08:00
|
|
|
|
1999-09-22 11:28:34 +08:00
|
|
|
/* Flush pending input. Might also flush output (if this system can't
|
|
|
|
flush only input). */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
extern int serial_flush_input (struct serial *);
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
|
|
/* Send a break between 0.25 and 0.5 seconds long. */
|
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
extern int serial_send_break (struct serial *scb);
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2005-01-14 09:59:20 +08:00
|
|
|
/* Turn the port into raw mode. */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
extern void serial_raw (struct serial *scb);
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
|
|
/* Return a pointer to a newly malloc'd ttystate containing the state
|
|
|
|
of the tty. */
|
1999-09-22 11:28:34 +08:00
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
extern serial_ttystate serial_get_tty_state (struct serial *scb);
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2011-03-05 03:23:42 +08:00
|
|
|
/* Return a pointer to a newly malloc'd ttystate containing a copy
|
|
|
|
of the state in TTYSTATE. */
|
|
|
|
|
|
|
|
extern serial_ttystate serial_copy_tty_state (struct serial *scb,
|
|
|
|
serial_ttystate ttystate);
|
|
|
|
|
1999-04-16 09:35:26 +08:00
|
|
|
/* Set the state of the tty to TTYSTATE. The change is immediate.
|
|
|
|
When changing to or from raw mode, input might be discarded.
|
1999-09-22 11:28:34 +08:00
|
|
|
Returns 0 for success, negative value for error (in which case
|
|
|
|
errno contains the error). */
|
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
extern int serial_set_tty_state (struct serial *scb, serial_ttystate ttystate);
|
1999-04-16 09:35:26 +08:00
|
|
|
|
1999-09-22 11:28:34 +08:00
|
|
|
/* printf_filtered a user-comprehensible description of ttystate on
|
2011-01-12 05:53:25 +08:00
|
|
|
the specified STREAM. FIXME: At present this sends output to the
|
2005-01-14 09:59:20 +08:00
|
|
|
default stream - GDB_STDOUT. */
|
1999-09-22 11:28:34 +08:00
|
|
|
|
2011-01-06 06:22:53 +08:00
|
|
|
extern void serial_print_tty_state (struct serial *scb,
|
|
|
|
serial_ttystate ttystate,
|
|
|
|
struct ui_file *);
|
1999-04-16 09:35:26 +08:00
|
|
|
|
1999-09-22 11:28:34 +08:00
|
|
|
/* Set the baudrate to the decimal value supplied. Returns 0 for
|
|
|
|
success, -1 for failure. */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
extern int serial_setbaudrate (struct serial *scb, int rate);
|
1999-04-16 09:35:26 +08:00
|
|
|
|
1999-09-22 11:28:34 +08:00
|
|
|
/* Set the number of stop bits to the value specified. Returns 0 for
|
|
|
|
success, -1 for failure. */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
1999-09-22 11:28:34 +08:00
|
|
|
#define SERIAL_1_STOPBITS 1
|
2005-01-14 09:59:20 +08:00
|
|
|
#define SERIAL_1_AND_A_HALF_STOPBITS 2 /* 1.5 bits, snicker... */
|
1999-09-22 11:28:34 +08:00
|
|
|
#define SERIAL_2_STOPBITS 3
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
extern int serial_setstopbits (struct serial *scb, int num);
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2015-03-24 05:15:42 +08:00
|
|
|
#define GDBPARITY_NONE 0
|
|
|
|
#define GDBPARITY_ODD 1
|
|
|
|
#define GDBPARITY_EVEN 2
|
|
|
|
|
|
|
|
/* Set parity for serial port. Returns 0 for success, -1 for failure. */
|
|
|
|
|
|
|
|
extern int serial_setparity (struct serial *scb, int parity);
|
|
|
|
|
1999-09-22 11:28:34 +08:00
|
|
|
/* Asynchronous serial interface: */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2011-01-12 05:53:25 +08:00
|
|
|
/* Can the serial device support asynchronous mode? */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
extern int serial_can_async_p (struct serial *scb);
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2011-01-12 05:53:25 +08:00
|
|
|
/* Has the serial device been put in asynchronous mode? */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
extern int serial_is_async_p (struct serial *scb);
|
1999-04-16 09:35:26 +08:00
|
|
|
|
1999-09-22 11:28:34 +08:00
|
|
|
/* For ASYNC enabled devices, register a callback and enable
|
|
|
|
asynchronous mode. To disable asynchronous mode, register a NULL
|
2005-01-14 09:59:20 +08:00
|
|
|
callback. */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
typedef void (serial_event_ftype) (struct serial *scb, void *context);
|
2011-01-06 06:22:53 +08:00
|
|
|
extern void serial_async (struct serial *scb,
|
|
|
|
serial_event_ftype *handler, void *context);
|
1999-04-16 09:35:26 +08:00
|
|
|
|
1999-10-06 07:13:56 +08:00
|
|
|
/* Trace/debug mechanism.
|
|
|
|
|
2001-07-16 04:34:14 +08:00
|
|
|
serial_debug() enables/disables internal debugging.
|
2005-01-14 09:59:20 +08:00
|
|
|
serial_debug_p() indicates the current debug state. */
|
1999-10-06 07:13:56 +08:00
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
extern void serial_debug (struct serial *scb, int debug_p);
|
1999-10-06 07:13:56 +08:00
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
extern int serial_debug_p (struct serial *scb);
|
1999-10-06 07:13:56 +08:00
|
|
|
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2011-01-12 05:53:25 +08:00
|
|
|
/* Details of an instance of a serial object. */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2001-07-09 22:38:49 +08:00
|
|
|
struct serial
|
1999-09-22 11:28:34 +08:00
|
|
|
{
|
2012-06-12 04:36:53 +08:00
|
|
|
/* serial objects are ref counted (but not the underlying
|
|
|
|
connection, just the object's lifetime in memory). */
|
|
|
|
int refcnt;
|
|
|
|
|
1999-09-22 11:28:34 +08:00
|
|
|
int fd; /* File descriptor */
|
2007-04-08 23:20:07 +08:00
|
|
|
/* File descriptor for a separate error stream that should be
|
|
|
|
immediately forwarded to gdb_stderr. This may be -1.
|
|
|
|
If != -1, this descriptor should be non-blocking or
|
|
|
|
ops->avail should be non-NULL. */
|
|
|
|
int error_fd;
|
2013-12-07 01:58:50 +08:00
|
|
|
const struct serial_ops *ops; /* Function vector */
|
1999-09-22 11:28:34 +08:00
|
|
|
void *state; /* Local context info for open FD */
|
|
|
|
serial_ttystate ttystate; /* Not used (yet) */
|
1999-10-06 07:13:56 +08:00
|
|
|
int bufcnt; /* Amount of data remaining in receive
|
2005-01-14 09:59:20 +08:00
|
|
|
buffer. -ve for sticky errors. */
|
1999-09-22 11:28:34 +08:00
|
|
|
unsigned char *bufp; /* Current byte */
|
|
|
|
unsigned char buf[BUFSIZ]; /* Da buffer itself */
|
2012-06-13 19:06:52 +08:00
|
|
|
struct serial *next; /* Pointer to the next `struct serial *' */
|
2005-01-14 09:59:20 +08:00
|
|
|
int debug_p; /* Trace this serial devices operation. */
|
|
|
|
int async_state; /* Async internal state. */
|
1999-09-22 11:28:34 +08:00
|
|
|
void *async_context; /* Async event thread's context */
|
|
|
|
serial_event_ftype *async_handler;/* Async event handler */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct serial_ops
|
|
|
|
{
|
-Wwrite-strings: The Rest
This is the remainder boring constification that all looks more of less
borderline obvious IMO.
gdb/ChangeLog:
2017-04-05 Pedro Alves <palves@redhat.com>
* ada-exp.y (yyerror): Constify.
* ada-lang.c (bound_name, get_selections)
(ada_variant_discrim_type)
(ada_variant_discrim_name, ada_value_struct_elt)
(ada_lookup_struct_elt_type, is_unchecked_variant)
(ada_which_variant_applies, standard_exc, ada_get_next_arg)
(catch_ada_exception_command_split)
(catch_ada_assert_command_split, catch_assert_command)
(ada_op_name): Constify.
* ada-lang.h (ada_yyerror, get_selections)
(ada_variant_discrim_name, ada_value_struct_elt): Constify.
* arc-tdep.c (arc_print_frame_cache): Constify.
* arm-tdep.c (arm_skip_stub): Constify.
* ax-gdb.c (gen_binop, gen_struct_ref_recursive, gen_struct_ref)
(gen_aggregate_elt_ref): Constify.
* bcache.c (print_bcache_statistics): Constify.
* bcache.h (print_bcache_statistics): Constify.
* break-catch-throw.c (catch_exception_command_1):
* breakpoint.c (struct ep_type_description::description):
Constify.
(add_solib_catchpoint): Constify.
(catch_fork_command_1): Add cast.
(add_catch_command): Constify.
* breakpoint.h (add_catch_command, add_solib_catchpoint):
Constify.
* bsd-uthread.c (bsd_uthread_state): Constify.
* buildsym.c (patch_subfile_names): Constify.
* buildsym.h (next_symbol_text_func, patch_subfile_names):
Constify.
* c-exp.y (yyerror): Constify.
(token::oper): Constify.
* c-lang.h (c_yyerror, cp_print_class_member): Constify.
* c-varobj.c (cplus_describe_child): Constify.
* charset.c (find_charset_names): Add cast.
(find_charset_names): Constify array and add const_cast.
* cli/cli-cmds.c (complete_command, cd_command): Constify.
(edit_command): Constify.
* cli/cli-decode.c (lookup_cmd): Constify.
* cli/cli-dump.c (dump_memory_command, dump_value_command):
Constify.
(struct dump_context): Constify.
(add_dump_command, restore_command): Constify.
* cli/cli-script.c (get_command_line): Constify.
* cli/cli-script.h (get_command_line): Constify.
* cli/cli-utils.c (check_for_argument): Constify.
* cli/cli-utils.h (check_for_argument): Constify.
* coff-pe-read.c (struct read_pe_section_data): Constify.
* command.h (lookup_cmd): Constify.
* common/print-utils.c (decimal2str): Constify.
* completer.c (gdb_print_filename): Constify.
* corefile.c (set_gnutarget): Constify.
* cp-name-parser.y (yyerror): Constify.
* cp-valprint.c (cp_print_class_member): Constify.
* cris-tdep.c (cris_register_name, crisv32_register_name):
Constify.
* d-exp.y (yyerror): Constify.
(struct token::oper): Constify.
* d-lang.h (d_yyerror): Constify.
* dbxread.c (struct header_file_location::name): Constify.
(add_old_header_file, add_new_header_file, last_function_name)
(dbx_next_symbol_text, add_bincl_to_list)
(find_corresponding_bincl_psymtab, set_namestring)
(find_stab_function_addr, read_dbx_symtab, start_psymtab)
(dbx_end_psymtab, read_ofile_symtab, process_one_symbol):
* defs.h (command_line_input, print_address_symbolic)
(deprecated_readline_begin_hook): Constify.
* dwarf2read.c (anonymous_struct_prefix, dwarf_bool_name):
Constify.
* event-top.c (handle_line_of_input): Constify and add cast.
* exceptions.c (catch_errors): Constify.
* exceptions.h (catch_errors): Constify.
* expprint.c (print_subexp_standard, op_string, op_name)
(op_name_standard, dump_raw_expression, dump_raw_expression):
* expression.h (op_name, op_string, dump_raw_expression):
Constify.
* f-exp.y (yyerror): Constify.
(struct token::oper): Constify.
(struct f77_boolean_val::name): Constify.
* f-lang.c (f_word_break_characters): Constify.
* f-lang.h (f_yyerror): Constify.
* fork-child.c (fork_inferior): Add cast.
* frv-tdep.c (struct gdbarch_tdep::register_names): Constify.
(new_variant): Constify.
* gdbarch.sh (pstring_ptr, pstring_list): Constify.
* gdbarch.c: Regenerate.
* gdbcore.h (set_gnutarget): Constify.
* go-exp.y (yyerror): Constify.
(token::oper): Constify.
* go-lang.h (go_yyerror): Constify.
* go32-nat.c (go32_sysinfo): Constify.
* guile/scm-breakpoint.c (gdbscm_breakpoint_expression): Constify.
* guile/scm-cmd.c (cmdscm_function): Constify.
* guile/scm-param.c (pascm_param_value): Constify.
* h8300-tdep.c (h8300_register_name, h8300s_register_name)
(h8300sx_register_name): Constify.
* hppa-tdep.c (hppa32_register_name, hppa64_register_name):
Constify.
* ia64-tdep.c (ia64_register_names): Constify.
* infcmd.c (construct_inferior_arguments): Constify.
(path_command, attach_post_wait): Constify.
* language.c (show_range_command, show_case_command)
(unk_lang_error): Constify.
* language.h (language_defn::la_error)
(language_defn::la_name_of_this): Constify.
* linespec.c (decode_line_2): Constify.
* linux-thread-db.c (thread_db_err_str): Constify.
* lm32-tdep.c (lm32_register_name): Constify.
* m2-exp.y (yyerror): Constify.
* m2-lang.h (m2_yyerror): Constify.
* m32r-tdep.c (m32r_register_names): Constify and make static.
* m68hc11-tdep.c (m68hc11_register_names): Constify.
* m88k-tdep.c (m88k_register_name): Constify.
* macroexp.c (appendmem): Constify.
* mdebugread.c (fdr_name, add_data_symbol, parse_type)
(upgrade_type, parse_external, parse_partial_symbols)
(mdebug_next_symbol_text, cross_ref, mylookup_symbol, new_psymtab)
(new_symbol): Constify.
* memattr.c (mem_info_command): Constify.
* mep-tdep.c (register_name_from_keyword): Constify.
* mi/mi-cmd-env.c (mi_cmd_env_path, _initialize_mi_cmd_env):
Constify.
* mi/mi-cmd-stack.c (list_args_or_locals): Constify.
* mi/mi-cmd-var.c (mi_cmd_var_show_attributes): Constify.
* mi/mi-main.c (captured_mi_execute_command): Constify and add
cast.
(mi_execute_async_cli_command): Constify.
* mips-tdep.c (mips_register_name): Constify.
* mn10300-tdep.c (register_name, mn10300_generic_register_name)
(am33_register_name, am33_2_register_name)
* moxie-tdep.c (moxie_register_names): Constify.
* nat/linux-osdata.c (osdata_type): Constify fields.
* nto-tdep.c (nto_parse_redirection): Constify.
* objc-lang.c (lookup_struct_typedef, lookup_objc_class)
(lookup_child_selector): Constify.
(objc_methcall::name): Constify.
* objc-lang.h (lookup_objc_class, lookup_child_selector)
(lookup_struct_typedef): Constify.
* objfiles.c (pc_in_section): Constify.
* objfiles.h (pc_in_section): Constify.
* p-exp.y (struct token::oper): Constify.
(yyerror): Constify.
* p-lang.h (pascal_yyerror): Constify.
* parser-defs.h (op_name_standard): Constify.
(op_print::string): Constify.
(exp_descriptor::op_name): Constify.
* printcmd.c (print_address_symbolic): Constify.
* psymtab.c (print_partial_symbols): Constify.
* python/py-breakpoint.c (stop_func): Constify.
(bppy_get_expression): Constify.
* python/py-cmd.c (cmdpy_completer::name): Constify.
(cmdpy_function): Constify.
* python/py-event.c (evpy_add_attribute)
(gdbpy_initialize_event_generic): Constify.
* python/py-event.h (evpy_add_attribute)
(gdbpy_initialize_event_generic): Constify.
* python/py-evts.c (add_new_registry): Constify.
* python/py-finishbreakpoint.c (outofscope_func): Constify.
* python/py-framefilter.c (get_py_iter_from_func): Constify.
* python/py-inferior.c (get_buffer): Add cast.
* python/py-param.c (parm_constant::name): Constify.
* python/py-unwind.c (fprint_frame_id): Constify.
* python/python.c (gdbpy_parameter_value): Constify.
* remote-fileio.c (remote_fio_func_map): Make 'name' const.
* remote.c (memory_packet_config::name): Constify.
(show_packet_config_cmd, remote_write_bytes)
(remote_buffer_add_string):
* reverse.c (exec_reverse_once): Constify.
* rs6000-tdep.c (variant::name, variant::description): Constify.
* rust-exp.y (rustyyerror): Constify.
* rust-lang.c (rust_op_name): Constify.
* rust-lang.h (rustyyerror): Constify.
* serial.h (serial_ops::name): Constify.
* sh-tdep.c (sh_sh_register_name, sh_sh3_register_name)
(sh_sh3e_register_name, sh_sh2e_register_name)
(sh_sh2a_register_name, sh_sh2a_nofpu_register_name)
(sh_sh_dsp_register_name, sh_sh3_dsp_register_name)
(sh_sh4_register_name, sh_sh4_nofpu_register_name)
(sh_sh4al_dsp_register_name): Constify.
* sh64-tdep.c (sh64_register_name): Constify.
* solib-darwin.c (lookup_symbol_from_bfd): Constify.
* spu-tdep.c (spu_register_name, info_spu_dma_cmdlist): Constify.
* stabsread.c (patch_block_stabs, read_type_number)
(ref_map::stabs, ref_add, process_reference)
(symbol_reference_defined, define_symbol, define_symbol)
(error_type, read_type, read_member_functions, read_cpp_abbrev)
(read_one_struct_field, read_struct_fields, read_baseclasses)
(read_tilde_fields, read_struct_type, read_array_type)
(read_enum_type, read_sun_builtin_type, read_sun_floating_type)
(read_huge_number, read_range_type, read_args, common_block_start)
(find_name_end): Constify.
* stabsread.h (common_block_start, define_symbol)
(process_one_symbol, symbol_reference_defined, ref_add):
* symfile.c (get_section_index, add_symbol_file_command):
* symfile.h (get_section_index): Constify.
* target-descriptions.c (tdesc_type::name): Constify.
(tdesc_free_type): Add cast.
* target.c (find_default_run_target):
(add_deprecated_target_alias, find_default_run_target)
(target_announce_detach): Constify.
(do_option): Constify.
* target.h (add_deprecated_target_alias): Constify.
* thread.c (print_thread_info_1): Constify.
* top.c (deprecated_readline_begin_hook, command_line_input):
Constify.
(init_main): Add casts.
* top.h (handle_line_of_input): Constify.
* tracefile-tfile.c (tfile_write_uploaded_tsv): Constify.
* tracepoint.c (tvariables_info_1, trace_status_mi): Constify.
(tfind_command): Rename to ...
(tfind_command_1): ... this and constify.
(tfind_command): New function.
(tfind_end_command, tfind_start_command): Adjust.
(encode_source_string): Constify.
* tracepoint.h (encode_source_string): Constify.
* tui/tui-data.c (tui_partial_win_by_name): Constify.
* tui/tui-data.h (tui_partial_win_by_name): Constify.
* tui/tui-source.c (tui_set_source_content_nil): Constify.
* tui/tui-source.h (tui_set_source_content_nil): Constify.
* tui/tui-win.c (parse_scrolling_args): Constify.
* tui/tui-windata.c (tui_erase_data_content): Constify.
* tui/tui-windata.h (tui_erase_data_content): Constify.
* tui/tui-winsource.c (tui_erase_source_content): Constify.
* tui/tui.c (tui_enable): Add cast.
* utils.c (defaulted_query): Constify.
(init_page_info): Add cast.
(puts_debug, subset_compare): Constify.
* utils.h (subset_compare): Constify.
* varobj.c (varobj_format_string): Constify.
* varobj.h (varobj_format_string): Constify.
* vax-tdep.c (vax_register_name): Constify.
* windows-nat.c (windows_detach): Constify.
* xcoffread.c (process_linenos, xcoff_next_symbol_text): Constify.
* xml-support.c (gdb_xml_end_element): Constify.
* xml-tdesc.c (tdesc_start_reg): Constify.
* xstormy16-tdep.c (xstormy16_register_name): Constify.
* xtensa-tdep.c (xtensa_find_register_by_name): Constify.
* xtensa-tdep.h (xtensa_register_t::name): Constify.
gdb/gdbserver/ChangeLog:
2017-04-05 Pedro Alves <palves@redhat.com>
* gdbreplay.c (sync_error): Constify.
* linux-x86-low.c (push_opcode): Constify.
2017-04-06 02:21:37 +08:00
|
|
|
const char *name;
|
2001-07-12 01:52:32 +08:00
|
|
|
int (*open) (struct serial *, const char *name);
|
|
|
|
void (*close) (struct serial *);
|
2010-08-21 02:49:20 +08:00
|
|
|
int (*fdopen) (struct serial *, int fd);
|
2001-07-12 01:52:32 +08:00
|
|
|
int (*readchar) (struct serial *, int timeout);
|
serial_write: change prototype to take a void-pointer buffer.
While remote.c works with "char *" buffers most of the time, other
remote targets have binary-ish-er protocols, and choose to use
"unsigned char" throughout, like e.g., remote-mips.c or
remote-m32r-sdi.c. That results in -Wpointer-sign warnings in those
targets, unless we add casts in calls to serial_write. Since
serial_write is only concerned about sending raw host bytes out, and
serial_ops->write_prim already works with "void *"/"size_t", a similar
interface to the "write" or "send" system calls, I find it natural to
change serial_write's prototype accordingly, avoiding the need for
casts.
Tested on x86_64 Fedora 17, and also by building x86_64-mingw32
and DJGPP/go32 -hosted gdbs.
gdb/
2013-04-19 Pedro Alves <palves@redhat.com>
* ser-base.c (ser_base_write): Change prototype -- take 'void *'
buffer and size_t size. Adjust.
* ser-base.h (ser_base_write): Adjust.
* ser-go32.c (cnts): Change type to size_t.
(dos_write): Change prototype -- take 'void *'
buffer and size_t size. Adjust.
(dos_info): Print elements of 'cnts' as unsigned long.
* serial.c (serial_write): Likewise.
* serial.h (serial_write): Adjust.
(struct serial_ops) <write>: Change prototype -- take 'void *'
buffer and size_t size. Adjust.
2013-04-19 23:26:17 +08:00
|
|
|
int (*write) (struct serial *, const void *buf, size_t count);
|
1999-09-22 11:28:34 +08:00
|
|
|
/* Discard pending output */
|
2001-07-12 01:52:32 +08:00
|
|
|
int (*flush_output) (struct serial *);
|
1999-09-22 11:28:34 +08:00
|
|
|
/* Discard pending input */
|
2001-07-12 01:52:32 +08:00
|
|
|
int (*flush_input) (struct serial *);
|
|
|
|
int (*send_break) (struct serial *);
|
|
|
|
void (*go_raw) (struct serial *);
|
|
|
|
serial_ttystate (*get_tty_state) (struct serial *);
|
2011-03-05 03:23:42 +08:00
|
|
|
serial_ttystate (*copy_tty_state) (struct serial *, serial_ttystate);
|
2001-07-12 01:52:32 +08:00
|
|
|
int (*set_tty_state) (struct serial *, serial_ttystate);
|
|
|
|
void (*print_tty_state) (struct serial *, serial_ttystate,
|
|
|
|
struct ui_file *);
|
|
|
|
int (*setbaudrate) (struct serial *, int rate);
|
|
|
|
int (*setstopbits) (struct serial *, int num);
|
2015-03-24 05:15:42 +08:00
|
|
|
/* Set the value PARITY as parity setting for serial object.
|
|
|
|
Return 0 in the case of success. */
|
|
|
|
int (*setparity) (struct serial *, int parity);
|
2011-01-12 05:53:25 +08:00
|
|
|
/* Wait for output to drain. */
|
2001-07-12 01:52:32 +08:00
|
|
|
int (*drain_output) (struct serial *);
|
1999-09-22 11:28:34 +08:00
|
|
|
/* Change the serial device into/out of asynchronous mode, call
|
|
|
|
the specified function when ever there is something
|
2005-01-14 09:59:20 +08:00
|
|
|
interesting. */
|
2001-07-12 01:52:32 +08:00
|
|
|
void (*async) (struct serial *scb, int async_p);
|
2005-04-21 13:34:33 +08:00
|
|
|
/* Perform a low-level read operation, reading (at most) COUNT
|
2007-10-13 04:14:57 +08:00
|
|
|
bytes into SCB->BUF. Return zero at end of file. */
|
2005-04-21 13:34:33 +08:00
|
|
|
int (*read_prim)(struct serial *scb, size_t count);
|
|
|
|
/* Perform a low-level write operation, writing (at most) COUNT
|
|
|
|
bytes from BUF. */
|
|
|
|
int (*write_prim)(struct serial *scb, const void *buf, size_t count);
|
2007-04-08 23:20:07 +08:00
|
|
|
/* Return that number of bytes that can be read from FD
|
|
|
|
without blocking. Return value of -1 means that the
|
2011-04-20 02:04:11 +08:00
|
|
|
read will not block even if less that requested bytes
|
2007-04-08 23:20:07 +08:00
|
|
|
are available. */
|
|
|
|
int (*avail)(struct serial *scb, int fd);
|
* 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-11 06:01:43 +08:00
|
|
|
|
|
|
|
#ifdef USE_WIN32API
|
|
|
|
/* Return a handle to wait on, indicating available data from SCB
|
|
|
|
when signaled, in *READ. Return a handle indicating errors
|
|
|
|
in *EXCEPT. */
|
|
|
|
void (*wait_handle) (struct serial *scb, HANDLE *read, HANDLE *except);
|
2006-04-25 05:00:13 +08:00
|
|
|
void (*done_wait_handle) (struct serial *scb);
|
* 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-11 06:01:43 +08:00
|
|
|
#endif /* USE_WIN32API */
|
1999-09-22 11:28:34 +08:00
|
|
|
};
|
|
|
|
|
2011-01-12 05:53:25 +08:00
|
|
|
/* Add a new serial interface to the interface list. */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2013-12-07 01:58:50 +08:00
|
|
|
extern void serial_add_interface (const struct serial_ops * optable);
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2011-01-12 05:53:25 +08:00
|
|
|
/* File in which to record the remote debugging session. */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
2013-12-18 12:35:13 +08:00
|
|
|
extern void serial_log_command (struct target_ops *self, const char *);
|
1999-04-16 09:35:26 +08: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-11 06:01:43 +08:00
|
|
|
#ifdef USE_WIN32API
|
|
|
|
|
|
|
|
/* Windows-only: find or create handles that we can wait on for this
|
|
|
|
serial device. */
|
|
|
|
extern void serial_wait_handle (struct serial *, HANDLE *, HANDLE *);
|
|
|
|
|
2006-04-25 05:00:13 +08:00
|
|
|
/* Windows-only: signal that we are done with the wait handles. */
|
|
|
|
extern void serial_done_wait_handle (struct serial *);
|
|
|
|
|
* 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-11 06:01:43 +08:00
|
|
|
#endif /* USE_WIN32API */
|
|
|
|
|
1999-04-16 09:35:26 +08:00
|
|
|
#endif /* SERIAL_H */
|