diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2025-08-19 16:00:22 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2025-08-19 16:05:02 -0400 |
commit | 6b6022ac967a25058aa14585fa457ac39867e0c8 (patch) | |
tree | 8b07114dbe5a585f14fe2f1fc6cdac0b888e29cf /gdb | |
parent | dab18bd71c22093f27920e8bf6df0079581c83dd (diff) | |
download | binutils-master.zip binutils-master.tar.gz binutils-master.tar.bz2 |
gdbsupport/common-inferior.h was needed by a few .c files, so move it
there.
Change-Id: Ia3ab8c30b529a1eda09862c8faea9e8c1c8123b5
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/infcmd.c | 1 | ||||
-rw-r--r-- | gdb/inferior.c | 1 | ||||
-rw-r--r-- | gdb/inferior.h | 2 | ||||
-rw-r--r-- | gdb/main.c | 1 | ||||
-rw-r--r-- | gdb/remote.c | 1 |
5 files changed, 4 insertions, 2 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c index b5e5909..89f9205 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -25,6 +25,7 @@ #include "inferior.h" #include "infrun.h" #include "gdbsupport/environ.h" +#include "gdbsupport/common-inferior.h" #include "value.h" #include "cli/cli-cmds.h" #include "cli/cli-style.h" diff --git a/gdb/inferior.c b/gdb/inferior.c index e8a28cd..eb895f2 100644 --- a/gdb/inferior.c +++ b/gdb/inferior.c @@ -19,6 +19,7 @@ #include "exec.h" #include "inferior.h" +#include "gdbsupport/common-inferior.h" #include "target.h" #include "command.h" #include "completer.h" diff --git a/gdb/inferior.h b/gdb/inferior.h index fe94e28..8455b79 100644 --- a/gdb/inferior.h +++ b/gdb/inferior.h @@ -54,10 +54,8 @@ struct thread_info; #include "symfile-add-flags.h" #include "gdbsupport/refcounted-object.h" #include "gdbsupport/forward-scope-exit.h" -#include "gdbsupport/gdb_unique_ptr.h" #include "gdbsupport/intrusive_list.h" -#include "gdbsupport/common-inferior.h" #include "gdbthread.h" #include "process-stratum-target.h" @@ -19,6 +19,7 @@ #include "annotate.h" #include "exceptions.h" +#include "gdbsupport/common-inferior.h" #include "top.h" #include "ui.h" #include "target.h" diff --git a/gdb/remote.c b/gdb/remote.c index 6208a90..7c9950c 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -22,6 +22,7 @@ #include <ctype.h> #include <fcntl.h> #include "exceptions.h" +#include "gdbsupport/common-inferior.h" #include "inferior.h" #include "infrun.h" #include "bfd.h" |