From: Tom Tromey Date: Wed, 13 Sep 2017 00:37:46 +0000 (-0600) Subject: Constify some commands in tracepoint.c X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=2983f7cbdb245e516799f1a5b8ddc0450bce98c9;p=deliverable%2Fbinutils-gdb.git Constify some commands in tracepoint.c In addition to the constification, this fixes a command-repeat bug. gdb/ChangeLog 2017-09-27 Tom Tromey * tracepoint.c (delete_trace_variable_command) (tfind_end_command, tfind_start_command, tfind_pc_command) (tfind_tracepoint_command, tfind_line_command) (tfind_range_command, tfind_outside_command): Constify. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index cd6e3e4816..28ca1468cd 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +2017-09-27 Tom Tromey + + * tracepoint.c (delete_trace_variable_command) + (tfind_end_command, tfind_start_command, tfind_pc_command) + (tfind_tracepoint_command, tfind_line_command) + (tfind_range_command, tfind_outside_command): Constify. + 2017-09-27 Tom Tromey * ax-gdb.c (maint_agent_printf_command, agent_command) diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index 52a449a3dd..30e3a3a16d 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -165,18 +165,6 @@ char *trace_notes = NULL; char *trace_stop_notes = NULL; -/* ======= Important command functions: ======= */ -static void actions_command (char *, int); -static void tstart_command (char *, int); -static void tstop_command (char *, int); -static void tstatus_command (char *, int); -static void tfind_pc_command (char *, int); -static void tfind_tracepoint_command (char *, int); -static void tfind_line_command (char *, int); -static void tfind_range_command (char *, int); -static void tfind_outside_command (char *, int); -static void tdump_command (char *, int); - /* support routines */ struct collection_list; @@ -442,7 +430,7 @@ trace_variable_command (char *args, int from_tty) } static void -delete_trace_variable_command (char *args, int from_tty) +delete_trace_variable_command (const char *args, int from_tty) { if (args == NULL) { @@ -2362,21 +2350,21 @@ tfind_command (char *args, int from_tty) /* tfind end */ static void -tfind_end_command (char *args, int from_tty) +tfind_end_command (const char *args, int from_tty) { tfind_command_1 ("-1", from_tty); } /* tfind start */ static void -tfind_start_command (char *args, int from_tty) +tfind_start_command (const char *args, int from_tty) { tfind_command_1 ("0", from_tty); } /* tfind pc command */ static void -tfind_pc_command (char *args, int from_tty) +tfind_pc_command (const char *args, int from_tty) { CORE_ADDR pc; @@ -2392,7 +2380,7 @@ tfind_pc_command (char *args, int from_tty) /* tfind tracepoint command */ static void -tfind_tracepoint_command (char *args, int from_tty) +tfind_tracepoint_command (const char *args, int from_tty) { int tdp; struct tracepoint *tp; @@ -2428,7 +2416,7 @@ tfind_tracepoint_command (char *args, int from_tty) corresponding to a source line OTHER THAN THE CURRENT ONE. */ static void -tfind_line_command (char *args, int from_tty) +tfind_line_command (const char *args, int from_tty) { check_trace_running (current_trace_status ()); @@ -2486,10 +2474,10 @@ tfind_line_command (char *args, int from_tty) /* tfind range command */ static void -tfind_range_command (char *args, int from_tty) +tfind_range_command (const char *args, int from_tty) { static CORE_ADDR start, stop; - char *tmp; + const char *tmp; check_trace_running (current_trace_status ()); @@ -2501,9 +2489,10 @@ tfind_range_command (char *args, int from_tty) if (0 != (tmp = strchr (args, ','))) { - *tmp++ = '\0'; /* Terminate start address. */ + std::string start_addr (args, tmp); + ++tmp; tmp = skip_spaces (tmp); - start = parse_and_eval_address (args); + start = parse_and_eval_address (start_addr.c_str ()); stop = parse_and_eval_address (tmp); } else @@ -2517,10 +2506,10 @@ tfind_range_command (char *args, int from_tty) /* tfind outside command */ static void -tfind_outside_command (char *args, int from_tty) +tfind_outside_command (const char *args, int from_tty) { CORE_ADDR start, stop; - char *tmp; + const char *tmp; if (current_trace_status ()->running && current_trace_status ()->filename == NULL) @@ -2534,9 +2523,10 @@ tfind_outside_command (char *args, int from_tty) if (0 != (tmp = strchr (args, ','))) { - *tmp++ = '\0'; /* Terminate start address. */ + std::string start_addr (args, tmp); + ++tmp; tmp = skip_spaces (tmp); - start = parse_and_eval_address (args); + start = parse_and_eval_address (start_addr.c_str ()); stop = parse_and_eval_address (tmp); } else