public inbox for gdb-cvs@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] gdb: fix include for gdb_signal in target/waitstatus.h
@ 2024-04-19 20:08 Simon Marchi
  0 siblings, 0 replies; only message in thread
From: Simon Marchi @ 2024-04-19 20:08 UTC (permalink / raw)
  To: gdb-cvs

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=559798f82800e1d7a2ef8b86da4a0e169e07efee

commit 559798f82800e1d7a2ef8b86da4a0e169e07efee
Author: Simon Marchi <simon.marchi@polymtl.ca>
Date:   Fri Apr 19 16:04:32 2024 -0400

    gdb: fix include for gdb_signal in target/waitstatus.h
    
    clangd tells me that the gdb_signals.h include in target/waitstatus.h is
    unused.  This include was probably to give access to `enum gdb_signal`,
    but this is in fact defined in gdb/signals.h.  Change the include to
    gdb/signals.h.  Include gdbsupport/gdb_signals.h in some files that were
    relying on the transitive include.
    
    Change-Id: I6f4361b3d801394bf29abe8c1393aff110aa0ad6

Diff:
---
 gdb/nat/fork-inferior.c | 1 +
 gdb/target/waitstatus.c | 1 +
 gdb/target/waitstatus.h | 2 +-
 3 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/gdb/nat/fork-inferior.c b/gdb/nat/fork-inferior.c
index a5900fe4ee8..4378177bc8c 100644
--- a/gdb/nat/fork-inferior.c
+++ b/gdb/nat/fork-inferior.c
@@ -26,6 +26,7 @@
 #include "gdbsupport/pathstuff.h"
 #include "gdbsupport/signals-state-save-restore.h"
 #include "gdbsupport/gdb_tilde_expand.h"
+#include "gdbsupport/gdb_signals.h"
 #include <vector>
 
 extern char **environ;
diff --git a/gdb/target/waitstatus.c b/gdb/target/waitstatus.c
index 30c0621326f..9e9b5633b12 100644
--- a/gdb/target/waitstatus.c
+++ b/gdb/target/waitstatus.c
@@ -18,6 +18,7 @@
    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 #include "waitstatus.h"
+#include "gdbsupport/gdb_signals.h"
 
 /* See waitstatus.h.  */
 
diff --git a/gdb/target/waitstatus.h b/gdb/target/waitstatus.h
index dce1a7f3175..7d5ad3f9776 100644
--- a/gdb/target/waitstatus.h
+++ b/gdb/target/waitstatus.h
@@ -21,7 +21,7 @@
 #define TARGET_WAITSTATUS_H
 
 #include "diagnostics.h"
-#include "gdbsupport/gdb_signals.h"
+#include "gdb/signals.h"
 
 /* Stuff for target_wait.  */

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-04-19 20:08 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-19 20:08 [binutils-gdb] gdb: fix include for gdb_signal in target/waitstatus.h Simon Marchi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).