diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-09-11 07:36:07 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-09-11 07:36:07 +0000 |
commit | 16bce26c356f8d3fc6ef90145085c6ff651ae957 (patch) | |
tree | c47028678e2f319baa7b8aac40ce20f1650d4d5c /gdb/irix4-nat.c | |
parent | 891fa266353840f739f2b78d25c37285ec1ffaf5 (diff) | |
download | gdb-16bce26c356f8d3fc6ef90145085c6ff651ae957.zip gdb-16bce26c356f8d3fc6ef90145085c6ff651ae957.tar.gz gdb-16bce26c356f8d3fc6ef90145085c6ff651ae957.tar.bz2 |
Protoization.
Diffstat (limited to 'gdb/irix4-nat.c')
-rw-r--r-- | gdb/irix4-nat.c | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/gdb/irix4-nat.c b/gdb/irix4-nat.c index 6c3fdda..506d57b 100644 --- a/gdb/irix4-nat.c +++ b/gdb/irix4-nat.c @@ -160,12 +160,22 @@ get_longjmp_target (CORE_ADDR *pc) return 1; } +/* Provide registers to GDB from a core file. + + CORE_REG_SECT points to an array of bytes, which were obtained from + a core file which BFD thinks might contain register contents. + CORE_REG_SIZE is its size. + + Normally, WHICH says which register set corelow suspects this is: + 0 --- the general-purpose register set + 2 --- the floating-point register set + However, for Irix 4, WHICH isn't used. + + REG_ADDR is also unused. */ + static void -fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr) - char *core_reg_sect; - unsigned core_reg_size; - int which; /* Unused */ - CORE_ADDR reg_addr; /* Unused */ +fetch_core_registers (char *core_reg_sect, unsigned core_reg_size, + int which, CORE_ADDR reg_addr) { if (core_reg_size != REGISTER_BYTES) { |