diff options
author | Mike Frysinger <vapier@gentoo.org> | 2014-02-20 00:13:48 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2014-03-05 01:42:44 -0500 |
commit | b2b255bdf3d29d97c10668b4bb5fceeb886a15f1 (patch) | |
tree | d4c8c2c2efcfe48f3192592b3845f06e841f9942 /sim/common/sim-utils.h | |
parent | cfa7ea2a961c0930cfd76006bd3811e98a8f2366 (diff) | |
download | gdb-b2b255bdf3d29d97c10668b4bb5fceeb886a15f1.zip gdb-b2b255bdf3d29d97c10668b4bb5fceeb886a15f1.tar.gz gdb-b2b255bdf3d29d97c10668b4bb5fceeb886a15f1.tar.bz2 |
sim: constify prog_name
There's no need for the prog_name handed down to the core to be mutable,
so add const markings to it and all the related funcs.
Diffstat (limited to 'sim/common/sim-utils.h')
-rw-r--r-- | sim/common/sim-utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/common/sim-utils.h b/sim/common/sim-utils.h index ddb19ab..30fac1a 100644 --- a/sim/common/sim-utils.h +++ b/sim/common/sim-utils.h @@ -45,7 +45,7 @@ unsigned long sim_elapsed_time_since (SIM_ELAPSED_TIME start); /* Utilities for manipulating the load image. */ -SIM_RC sim_analyze_program (SIM_DESC sd, char *prog_name, +SIM_RC sim_analyze_program (SIM_DESC sd, const char *prog_name, struct bfd *prog_bfd); /* Load program PROG into the simulator using the function DO_LOAD. @@ -63,7 +63,7 @@ SIM_RC sim_analyze_program (SIM_DESC sd, char *prog_name, typedef int sim_write_fn (SIM_DESC sd, SIM_ADDR mem, const unsigned char *buf, int length); struct bfd *sim_load_file (SIM_DESC sd, const char *myname, - host_callback *callback, char *prog, + host_callback *callback, const char *prog, struct bfd *prog_bfd, int verbose_p, int lma_p, sim_write_fn do_load); |