diff options
author | Daniel Jacobowitz <drow@false.org> | 2005-06-13 01:59:22 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2005-06-13 01:59:22 +0000 |
commit | f450004a28a0ca9548117ae78d5ad554a3e32c69 (patch) | |
tree | e3f927505f7276dfc9c1a87bb8ee0e948775119d /gdb/gdbserver/regcache.c | |
parent | 2087f047780bf349dd68b6e0d73f88570cce8606 (diff) | |
download | gdb-f450004a28a0ca9548117ae78d5ad554a3e32c69.zip gdb-f450004a28a0ca9548117ae78d5ad554a3e32c69.tar.gz gdb-f450004a28a0ca9548117ae78d5ad554a3e32c69.tar.bz2 |
* acconfig.h: Remove.
* configure.ac: Add a test for socklen_t. Use three-argument
AC_DEFINE throughout.
* config.in: Regenerated using autoheader 2.59.
* configure: Regenerated.
* gdbreplay.c (socklen_t): Provide a default.
(remote_open): Use socklen_t.
* remote-utils.c (socklen_t): Provide a default.
(remote_open): Use socklen_t.
(convert_int_to_ascii, convert_ascii_to_int, decode_M_packet): Use
unsigned char.
* i387-fp.c (struct i387_fsave, struct i387_fxsave): Use unsigned
char for buffers.
* linux-low.c (linux_read_memory, linux_write_memory)
(linux_read_auxv): Likewise.
* mem-break.c (breakpoint_data, set_breakpoint_data, check_mem_read)
(check_mem_write): Likewise.
* mem-break.h (set_breakpoint_data, check_mem_read, check_mem_write):
Likewise.
* regcache.c (struct inferior_rgcache_data, registers_to_string)
(registers_from_string, register_data): Likewise.
* server.c (handle_query, main): Likewise.
* server.h (convert_ascii_to_int, convert_int_to_ascii)
(decode_M_packet): Likewise.
* target.c (read_inferior_memory, write_inferior_memory): Likewise.
* target.h (struct target_ops): Update read_memory, write_memory,
and read_auxv.
(read_inferior_memory, write_inferior_memory): Update.
* linux-low.h (struct linux_target_ops): Change type of breakpoint
to unsigned char *.
* linux-arm-low.c, linux-cris-low.c, linux-crisv32-low.c,
linux-i386-low.c, linux-m32r-low.c, linux-m68k-low.c,
linux-mips-low.c, linux-ppc-low.c, linux-ppc64-low.c,
linux-s390-low.c, linux-sh-low.c: Update for changes in
read_inferior_memory and the_low_target->breakpoint.
Diffstat (limited to 'gdb/gdbserver/regcache.c')
-rw-r--r-- | gdb/gdbserver/regcache.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gdb/gdbserver/regcache.c b/gdb/gdbserver/regcache.c index bc64ebc..f1d0fe5 100644 --- a/gdb/gdbserver/regcache.c +++ b/gdb/gdbserver/regcache.c @@ -1,5 +1,5 @@ /* Register support routines for the remote server for GDB. - Copyright 2001, 2002, 2004 + Copyright 2001, 2002, 2004, 2005 Free Software Foundation, Inc. This file is part of GDB. @@ -32,7 +32,7 @@ struct inferior_regcache_data { int registers_valid; - char *registers; + unsigned char *registers; }; static int register_bytes; @@ -144,7 +144,7 @@ set_register_cache (struct reg *regs, int n) void registers_to_string (char *buf) { - char *registers = get_regcache (current_inferior, 1)->registers; + unsigned char *registers = get_regcache (current_inferior, 1)->registers; convert_int_to_ascii (registers, buf, register_bytes); } @@ -153,7 +153,7 @@ void registers_from_string (char *buf) { int len = strlen (buf); - char *registers = get_regcache (current_inferior, 1)->registers; + unsigned char *registers = get_regcache (current_inferior, 1)->registers; if (len != register_bytes * 2) { @@ -200,10 +200,11 @@ register_size (int n) return reg_defs[n].size / 8; } -static char * +static unsigned char * register_data (int n, int fetch) { - char *registers = get_regcache (current_inferior, fetch)->registers; + unsigned char *registers + = get_regcache (current_inferior, fetch)->registers; return registers + (reg_defs[n].offset / 8); } |