diff options
author | Pedro Alves <pedro@palves.net> | 2021-06-17 16:16:54 +0100 |
---|---|---|
committer | Pedro Alves <pedro@palves.net> | 2021-06-17 16:22:11 +0100 |
commit | 965febe599ab3a5f9fa17a7aaed4dd714f265ecd (patch) | |
tree | 6070fefce3712338afe42d5a13504b893a64223d /gdb/inflow.c | |
parent | 96cbfd9f0488e9536bfc27550ebf90cb1ecac93b (diff) | |
download | gdb-965febe599ab3a5f9fa17a7aaed4dd714f265ecd.zip gdb-965febe599ab3a5f9fa17a7aaed4dd714f265ecd.tar.gz gdb-965febe599ab3a5f9fa17a7aaed4dd714f265ecd.tar.bz2 |
Move scoped_ignore_sigttou to gdbsupport/
A following patch will want to use scoped_ignore_sigttou in code
shared between GDB and GDBserver. Move it under gdbsupport/.
Note that despite what inflow.h/inflow.c's first line says, inflow.c
is no longer about ptrace, it is about terminal management. Some
other files were unnecessarily including inflow.h, I guess a leftover
from the days when inflow.c really was about ptrace. Those inclusions
are simply dropped.
gdb/ChangeLog:
yyyy-mm-dd Pedro Alves <pedro@palves.net>
* Makefile.in (HFILES_NO_SRCDIR): Remove inflow.h.
* inf-ptrace.c, inflow.c, procfs.c: Don't include "inflow.h".
* inflow.h: Delete, moved to gdbsupport/ under a different name.
* ser-unix.c: Don't include "inflow.h". Include
"gdbsupport/scoped_ignore_sigttou.h".
gdbsupport/ChangeLog:
yyyy-mm-dd Pedro Alves <pedro@palves.net>
* scoped_ignore_sigttou.h: New file, moved from gdb/ and renamed.
Change-Id: Ie390abf42c3a78bec6d282ad2a63edd3e623559a
Diffstat (limited to 'gdb/inflow.c')
-rw-r--r-- | gdb/inflow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/inflow.c b/gdb/inflow.c index d241540..f9917d6 100644 --- a/gdb/inflow.c +++ b/gdb/inflow.c @@ -29,12 +29,12 @@ #include <fcntl.h> #include "gdbsupport/gdb_select.h" -#include "inflow.h" #include "gdbcmd.h" #ifdef HAVE_TERMIOS_H #include <termios.h> #endif #include "gdbsupport/job-control.h" +#include "gdbsupport/scoped_ignore_sigttou.h" #ifdef HAVE_SYS_IOCTL_H #include <sys/ioctl.h> |