[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 5/9] gdbstub: Constify GdbCmdParseEntry
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH v2 5/9] gdbstub: Constify GdbCmdParseEntry |
Date: |
Thu, 6 May 2021 15:37:54 +0200 |
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
gdbstub.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/gdbstub.c b/gdbstub.c
index 9103ffc9028..83d47c67325 100644
--- a/gdbstub.c
+++ b/gdbstub.c
@@ -1981,7 +1981,7 @@ static void handle_v_kill(GdbCmdContext *gdb_ctx, void
*user_ctx)
exit(0);
}
-static GdbCmdParseEntry gdb_v_commands_table[] = {
+static const GdbCmdParseEntry gdb_v_commands_table[] = {
/* Order is important if has same prefix */
{
.handler = handle_v_cont_query,
@@ -2324,7 +2324,7 @@ static void handle_set_qemu_phy_mem_mode(GdbCmdContext
*gdb_ctx, void *user_ctx)
}
#endif
-static GdbCmdParseEntry gdb_gen_query_set_common_table[] = {
+static const GdbCmdParseEntry gdb_gen_query_set_common_table[] = {
/* Order is important if has same prefix */
{
.handler = handle_query_qemu_sstepbits,
@@ -2342,7 +2342,7 @@ static GdbCmdParseEntry gdb_gen_query_set_common_table[]
= {
},
};
-static GdbCmdParseEntry gdb_gen_query_table[] = {
+static const GdbCmdParseEntry gdb_gen_query_table[] = {
{
.handler = handle_query_curr_tid,
.cmd = "C",
@@ -2420,7 +2420,7 @@ static GdbCmdParseEntry gdb_gen_query_table[] = {
#endif
};
-static GdbCmdParseEntry gdb_gen_set_table[] = {
+static const GdbCmdParseEntry gdb_gen_set_table[] = {
/* Order is important if has same prefix */
{
.handler = handle_set_qemu_sstep,
--
2.26.3
- Re: [PATCH v2 4/9] bsd-user/syscall: Replace alloca() by g_new(), (continued)
- Re: [PATCH v2 4/9] bsd-user/syscall: Replace alloca() by g_new(), Warner Losh, 2021/05/06
- Re: [PATCH v2 4/9] bsd-user/syscall: Replace alloca() by g_new(), Eric Blake, 2021/05/06
- Re: [PATCH v2 4/9] bsd-user/syscall: Replace alloca() by g_new(), Warner Losh, 2021/05/06
- Re: [PATCH v2 4/9] bsd-user/syscall: Replace alloca() by g_new(), Eric Blake, 2021/05/06
- Re: [PATCH v2 4/9] bsd-user/syscall: Replace alloca() by g_new(), Warner Losh, 2021/05/06
- Re: [PATCH v2 4/9] bsd-user/syscall: Replace alloca() by g_new(), Eric Blake, 2021/05/06
- Re: [PATCH v2 4/9] bsd-user/syscall: Replace alloca() by g_new(), Peter Maydell, 2021/05/06
- Re: [PATCH v2 4/9] bsd-user/syscall: Replace alloca() by g_new(), Warner Losh, 2021/05/06
- Re: [PATCH v2 4/9] bsd-user/syscall: Replace alloca() by g_new(), Peter Maydell, 2021/05/06
- Re: [PATCH v2 4/9] bsd-user/syscall: Replace alloca() by g_new(), Warner Losh, 2021/05/06
- [PATCH v2 5/9] gdbstub: Constify GdbCmdParseEntry,
Philippe Mathieu-Daudé <=
- [PATCH v2 6/9] gdbstub: Only call cmd_parse_params() with non-NULL command schema, Philippe Mathieu-Daudé, 2021/05/06
- [PATCH v2 7/9] gdbstub: Replace alloca() + memset(0) by g_new0(), Philippe Mathieu-Daudé, 2021/05/06
- [PATCH v2 8/9] hw/misc/pca9552: Replace g_newa() by g_new(), Philippe Mathieu-Daudé, 2021/05/06
- [PATCH v2 9/9] target/ppc/kvm: Replace alloca() by g_malloc(), Philippe Mathieu-Daudé, 2021/05/06
- Re: [PATCH v2 0/9] misc: Replace alloca() by g_malloc(), Warner Losh, 2021/05/06