summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-04-13 20:28:19 +0000
committerMike Frysinger <vapier@gentoo.org>2010-04-13 20:28:19 +0000
commit61df8b8dd249120297595228aad6ed10e810d345 (patch)
treea76b65034634fb323ca74d6b9b3bc3f67b117ca7 /include
parent81951f9ed72164d4a8fbc1565d74e69a2d7d2dfc (diff)
downloadbinutils-redhat-61df8b8dd249120297595228aad6ed10e810d345.tar.gz
sim: constify sim_write source buffer
Most the sim write functions declare their source buffer const because they only ever read from it. The global sim_write() function does not follow this convention though which causes some warnings when trying to pass it const strings or buffers. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include')
-rw-r--r--include/gdb/ChangeLog4
-rw-r--r--include/gdb/remote-sim.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/include/gdb/ChangeLog b/include/gdb/ChangeLog
index 3b84cad187..119264eb34 100644
--- a/include/gdb/ChangeLog
+++ b/include/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2010-04-13 Mike Frysinger <vapier@gentoo.org>
+
+ * remote-sim.h (sim_write): Add const to buf arg.
+
2009-11-24 DJ Delorie <dj@redhat.com>
* sim-rx.h: New.
diff --git a/include/gdb/remote-sim.h b/include/gdb/remote-sim.h
index cfb1c1141d..37f029ad74 100644
--- a/include/gdb/remote-sim.h
+++ b/include/gdb/remote-sim.h
@@ -175,7 +175,7 @@ int sim_read PARAMS ((SIM_DESC sd, SIM_ADDR mem, unsigned char *buf, int length)
memory. Store bytes starting at virtual address MEM. Result is
number of bytes write, or zero if error. */
-int sim_write PARAMS ((SIM_DESC sd, SIM_ADDR mem, unsigned char *buf, int length));
+int sim_write PARAMS ((SIM_DESC sd, SIM_ADDR mem, const unsigned char *buf, int length));
/* Fetch register REGNO storing its raw (target endian) value in the