From: Richard Henderson <richard.henderson@linaro.org>
To: qemu-devel@nongnu.org
Cc: alex.bennee@linaro.org, "Bin Meng" <bmeng.cn@gmail.com>,
"Philippe Mathieu-Daudé" <philmd@linaro.org>
Subject: [PATCH v4.5 01/29] gdbstub/internals.h: clean up include guard
Date: Thu, 2 Mar 2023 18:57:37 -0800 [thread overview]
Message-ID: <20230303025805.625589-2-richard.henderson@linaro.org> (raw)
In-Reply-To: <20230303025805.625589-1-richard.henderson@linaro.org>
From: Alex Bennée <alex.bennee@linaro.org>
Use something more specific to avoid name clashes.
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20230302190846.2593720-2-alex.bennee@linaro.org>
---
gdbstub/internals.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gdbstub/internals.h b/gdbstub/internals.h
index b23999f951..7df0e11c47 100644
--- a/gdbstub/internals.h
+++ b/gdbstub/internals.h
@@ -6,8 +6,8 @@
* SPDX-License-Identifier: GPL-2.0-or-later
*/
-#ifndef _INTERNALS_H_
-#define _INTERNALS_H_
+#ifndef GDBSTUB_INTERNALS_H
+#define GDBSTUB_INTERNALS_H
#include "exec/cpu-common.h"
@@ -16,4 +16,4 @@ int gdb_breakpoint_insert(CPUState *cs, int type, vaddr addr, vaddr len);
int gdb_breakpoint_remove(CPUState *cs, int type, vaddr addr, vaddr len);
void gdb_breakpoint_remove_all(CPUState *cs);
-#endif /* _INTERNALS_H_ */
+#endif /* GDBSTUB_INTERNALS_H */
--
2.34.1
next prev parent reply other threads:[~2023-03-03 2:58 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-03 2:57 [PATCH v4.5 00/29] gdbstub/next: re-organise and split build Richard Henderson
2023-03-03 2:57 ` Richard Henderson [this message]
2023-03-03 2:57 ` [PATCH v4.5 02/29] gdbstub: fix-up copyright and license files Richard Henderson
2023-03-03 2:57 ` [PATCH v4.5 03/29] gdbstub: Make syscall_complete/[gs]et_reg target-agnostic typedefs Richard Henderson
2023-03-03 2:57 ` [PATCH v4.5 04/29] gdbstub: clean-up indent on gdb_exit Richard Henderson
2023-03-03 2:57 ` [PATCH v4.5 05/29] gdbstub: define separate user/system structures Richard Henderson
2023-03-03 2:57 ` [PATCH v4.5 06/29] gdbstub: move GDBState to shared internals header Richard Henderson
2023-03-03 2:57 ` [PATCH v4.5 07/29] includes: move tb_flush into its own header Richard Henderson
2023-03-03 2:57 ` [PATCH v4.5 08/29] gdbstub: move fromhex/tohex routines to internals Richard Henderson
2023-03-03 2:57 ` [PATCH v4.5 09/29] gdbstub: make various helpers visible to the rest of the module Richard Henderson
2023-03-03 2:57 ` [PATCH v4.5 10/29] gdbstub: move chunk of softmmu functionality to own file Richard Henderson
2023-03-03 2:57 ` [PATCH v4.5 11/29] gdbstub: move chunks of user code into own files Richard Henderson
2023-03-03 2:57 ` [PATCH v4.5 12/29] gdbstub: rationalise signal mapping in softmmu Richard Henderson
2023-03-03 2:57 ` [PATCH v4.5 13/29] gdbstub: abstract target specific details from gdb_put_packet_binary Richard Henderson
2023-03-03 2:57 ` [PATCH v4.5 14/29] gdbstub: specialise handle_query_attached Richard Henderson
2023-03-03 2:57 ` [PATCH v4.5 15/29] gdbstub: specialise target_memory_rw_debug Richard Henderson
2023-03-03 2:57 ` [PATCH v4.5 16/29] gdbstub: introduce gdb_get_max_cpus Richard Henderson
2023-03-03 2:57 ` [PATCH v4.5 17/29] gdbstub: specialise stub_can_reverse Richard Henderson
2023-03-03 2:57 ` [PATCH v4.5 18/29] gdbstub: fix address type of gdb_set_cpu_pc Richard Henderson
2023-03-03 2:57 ` [PATCH v4.5 19/29] gdbstub: don't use target_ulong while handling registers Richard Henderson
2023-03-03 2:57 ` [PATCH v4.5 20/29] gdbstub: move register helpers into standalone include Richard Henderson
2023-03-03 2:57 ` [PATCH v4.5 21/29] gdbstub: move syscall handling to new file Richard Henderson
2023-03-03 2:57 ` [PATCH v4.5 22/29] gdbstub: only compile gdbstub twice for whole build Richard Henderson
2023-03-03 2:57 ` [PATCH v4.5 23/29] testing: probe gdb for supported architectures ahead of time Richard Henderson
2023-03-03 2:58 ` [PATCH v4.5 24/29] include: split target_long definition from cpu-defs Richard Henderson
2023-03-03 2:58 ` [PATCH v4.5 25/29] gdbstub: split out softmmu/user specifics for syscall handling Richard Henderson
2023-03-03 2:58 ` [PATCH v4.5 26/29] gdbstub: Remove gdb_do_syscallv Richard Henderson
2023-03-03 9:43 ` Philippe Mathieu-Daudé
2023-03-03 2:58 ` [PATCH v4.5 27/29] gdbstub: Adjust gdb_do_syscall to only use uint32_t and uint64_t Richard Henderson
2023-03-03 9:44 ` Philippe Mathieu-Daudé
2023-03-03 2:58 ` [PATCH v4.5 28/29] gdbstub: Build syscall.c once Richard Henderson
2023-03-03 9:45 ` Philippe Mathieu-Daudé
2023-03-03 2:58 ` [PATCH v4.5 29/29] gdbstub: move update guest debug to accel ops Richard Henderson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230303025805.625589-2-richard.henderson@linaro.org \
--to=richard.henderson@linaro.org \
--cc=alex.bennee@linaro.org \
--cc=bmeng.cn@gmail.com \
--cc=philmd@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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 NNTP newsgroup(s).