diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2022-09-29 15:13:09 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2022-09-29 16:42:34 -0400 |
commit | 3fe639b81b452b79460a8527aa57011f1c42ec8b (patch) | |
tree | 21ac377df7dfa287c46d00b11045fdb1b0fa8388 /gdb/gdbarch-gen.h | |
parent | 31282a849107d95d3cfe115ba160f976dd99844c (diff) | |
download | gdb-3fe639b81b452b79460a8527aa57011f1c42ec8b.zip gdb-3fe639b81b452b79460a8527aa57011f1c42ec8b.tar.gz gdb-3fe639b81b452b79460a8527aa57011f1c42ec8b.tar.bz2 |
gdb: constify auxv parse functions
Constify the input parameters of the various auxv parse functions, they
don't need to modify the raw auxv data.
Change-Id: I13eacd5ab8e925ec2b5c1f7722cbab39c41516ec
Diffstat (limited to 'gdb/gdbarch-gen.h')
-rw-r--r-- | gdb/gdbarch-gen.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/gdbarch-gen.h b/gdb/gdbarch-gen.h index c7a2470..706dbb3 100644 --- a/gdb/gdbarch-gen.h +++ b/gdb/gdbarch-gen.h @@ -1539,8 +1539,8 @@ extern void set_gdbarch_program_breakpoint_here_p (struct gdbarch *gdbarch, gdba extern bool gdbarch_auxv_parse_p (struct gdbarch *gdbarch); -typedef int (gdbarch_auxv_parse_ftype) (struct gdbarch *gdbarch, gdb_byte **readptr, gdb_byte *endptr, CORE_ADDR *typep, CORE_ADDR *valp); -extern int gdbarch_auxv_parse (struct gdbarch *gdbarch, gdb_byte **readptr, gdb_byte *endptr, CORE_ADDR *typep, CORE_ADDR *valp); +typedef int (gdbarch_auxv_parse_ftype) (struct gdbarch *gdbarch, const gdb_byte **readptr, const gdb_byte *endptr, CORE_ADDR *typep, CORE_ADDR *valp); +extern int gdbarch_auxv_parse (struct gdbarch *gdbarch, const gdb_byte **readptr, const gdb_byte *endptr, CORE_ADDR *typep, CORE_ADDR *valp); extern void set_gdbarch_auxv_parse (struct gdbarch *gdbarch, gdbarch_auxv_parse_ftype *auxv_parse); /* Print the description of a single auxv entry described by TYPE and VAL |