diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-08-07 03:07:59 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-08-07 03:07:59 +0000 |
commit | 89727b6fbf33f119332b50e906fde555716ac51a (patch) | |
tree | 74169c5490e293eb85fc00ecd30cbd148744f66a /gdb/core-regset.c | |
parent | bfd7b64e2339c6d4b9a75c1c521fc32cb54a2354 (diff) | |
download | binutils-gdb-89727b6fbf33f119332b50e906fde555716ac51a.tar.gz |
Protoize ch-exp.c, core-regset.c.
Diffstat (limited to 'gdb/core-regset.c')
-rw-r--r-- | gdb/core-regset.c | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/gdb/core-regset.c b/gdb/core-regset.c index f6e6a88901f..a3aa52e1383 100644 --- a/gdb/core-regset.c +++ b/gdb/core-regset.c @@ -72,20 +72,16 @@ void _initialize_core_regset (void); Read the values of either the general register set (WHICH equals 0) or the floating point register set (WHICH equals 2) from the core file data (pointed to by CORE_REG_SECT), and update gdb's idea of - their current values. The CORE_REG_SIZE parameter is ignored. + their current values. The CORE_REG_SIZE parameter is compared to + the size of the gregset or fpgregset structures (as appropriate) to + validate the size of the structure from the core file. The + REG_ADDR parameter is ignored. - NOTES - - Use the indicated sizes to validate the gregset and fpregset - structures. */ static void -fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr) - char *core_reg_sect; - unsigned core_reg_size; - int which; - CORE_ADDR reg_addr; /* Unused in this version */ +fetch_core_registers (char *core_reg_sect, unsigned core_reg_size, int which, + CORE_ADDR reg_addr) { #if defined (HAVE_GREGSET_T) && defined (HAVE_FPREGSET_T) gregset_t gregset; |