From: Tom Tromey Date: Tue, 10 Jun 2014 17:25:18 +0000 (-0600) Subject: constify probe.c function X-Git-Tag: binutils-2_25~994 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8236def8eb5276731a00eb21c2e687e4484aeb59;p=external%2Fbinutils.git constify probe.c function This constifies an argument to info_probes_for_ops. 2014-06-18 Tom Tromey * probe.c (info_probes_for_ops): Make "arg" const. * probe.h (info_probes_for_ops): Update. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0b35d83..8a7d30c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2014-06-18 Tom Tromey + * probe.c (info_probes_for_ops): Make "arg" const. + * probe.h (info_probes_for_ops): Update. + +2014-06-18 Tom Tromey + * varobj.c (varobj_create): Update. * valops.c (value_of_this): Update. * tracepoint.c (add_local_symbols, scope_info): Update. diff --git a/gdb/probe.c b/gdb/probe.c index 838d9f9..859e6e7 100644 --- a/gdb/probe.c +++ b/gdb/probe.c @@ -486,7 +486,8 @@ get_number_extra_fields (const struct probe_ops *pops) /* See comment in probe.h. */ void -info_probes_for_ops (char *arg, int from_tty, const struct probe_ops *pops) +info_probes_for_ops (const char *arg, int from_tty, + const struct probe_ops *pops) { char *provider, *probe_name = NULL, *objname = NULL; struct cleanup *cleanup = make_cleanup (null_cleanup, NULL); @@ -501,17 +502,17 @@ info_probes_for_ops (char *arg, int from_tty, const struct probe_ops *pops) struct gdbarch *gdbarch = get_current_arch (); /* Do we have a `provider:probe:objfile' style of linespec? */ - provider = extract_arg (&arg); + provider = extract_arg_const (&arg); if (provider) { make_cleanup (xfree, provider); - probe_name = extract_arg (&arg); + probe_name = extract_arg_const (&arg); if (probe_name) { make_cleanup (xfree, probe_name); - objname = extract_arg (&arg); + objname = extract_arg_const (&arg); if (objname) make_cleanup (xfree, objname); } diff --git a/gdb/probe.h b/gdb/probe.h index aa8aba8..b4ff0a6 100644 --- a/gdb/probe.h +++ b/gdb/probe.h @@ -230,7 +230,7 @@ extern VEC (probe_p) *find_probes_in_objfile (struct objfile *objfile, function that can be used by the probe backends to print their `info probe TYPE'. */ -extern void info_probes_for_ops (char *arg, int from_tty, +extern void info_probes_for_ops (const char *arg, int from_tty, const struct probe_ops *pops); /* Return the `cmd_list_element' associated with the `info probes' command,