Skip to content

Commit

Permalink
gdbstub: Constify GdbCmdParseEntry
Browse files Browse the repository at this point in the history
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20210505170055.1415360-3-philmd@redhat.com>
Message-Id: <20210520174303.12310-5-alex.bennee@linaro.org>
  • Loading branch information
philmd authored and stsquad committed May 25, 2021
1 parent 1aab5f0 commit 305bea0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gdbstub.c
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand All @@ -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",
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 305bea0

Please sign in to comment.