diff options
Diffstat (limited to 'gdb/regcache.h')
-rw-r--r-- | gdb/regcache.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/regcache.h b/gdb/regcache.h index 108b3fa..7de8e2e 100644 --- a/gdb/regcache.h +++ b/gdb/regcache.h @@ -35,10 +35,10 @@ struct regcache *regcache_xmalloc (struct gdbarch *gdbarch); /* Transfer a raw register [0..NUM_REGS) between core-gdb and the regcache. */ -void regcache_read (struct regcache *regcache, int rawnum, char *buf); -void regcache_write (struct regcache *regcache, int rawnum, char *buf); +void regcache_raw_read (struct regcache *regcache, int rawnum, char *buf); +void regcache_raw_write (struct regcache *regcache, int rawnum, char *buf); int regcache_valid_p (struct regcache *regcache, int regnum); -CORE_ADDR regcache_read_as_address (struct regcache *regcache, int rawnum); +CORE_ADDR regcache_raw_read_as_address (struct regcache *regcache, int rawnum); /* Transfer a raw register [0..NUM_REGS) between the regcache and the target. These functions are called by the target in response to a |