Protoization.
This commit is contained in:
parent
07e90ad5b7
commit
165a58fe68
3 changed files with 21 additions and 11 deletions
|
@ -1,3 +1,8 @@
|
|||
2000-09-05 Kevin Buettner <kevinb@redhat.com>
|
||||
|
||||
* i386aix-nat.c (fetch_core_registers): Protoize.
|
||||
* hpux-thread.c (hpux_thread_xfer_memory): Protoize.
|
||||
|
||||
2000-09-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
|
||||
|
||||
* m68hc11-tdep.c (m68hc11_frame_chain): Check for pc in call dummy.
|
||||
|
|
|
@ -433,12 +433,8 @@ hpux_thread_prepare_to_store (void)
|
|||
}
|
||||
|
||||
static int
|
||||
hpux_thread_xfer_memory (memaddr, myaddr, len, dowrite, target)
|
||||
CORE_ADDR memaddr;
|
||||
char *myaddr;
|
||||
int len;
|
||||
int dowrite;
|
||||
struct target_ops *target; /* ignored */
|
||||
hpux_thread_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len,
|
||||
int dowrite, struct target_ops *target)
|
||||
{
|
||||
int retval;
|
||||
struct cleanup *old_chain;
|
||||
|
|
|
@ -314,12 +314,21 @@ static int core_regmap[] =
|
|||
CD_DS, CD_ES, CD_FS, CD_GS,
|
||||
};
|
||||
|
||||
/* 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.
|
||||
|
||||
WHICH says which register set corelow suspects this is:
|
||||
0 --- the general-purpose register set
|
||||
2 --- the floating-point register set
|
||||
|
||||
REG_ADDR isn't used. */
|
||||
|
||||
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; /* ignored */
|
||||
fetch_core_registers (char *core_reg_sect, unsigned core_reg_size,
|
||||
int which, CORE_ADDR reg_addr)
|
||||
{
|
||||
|
||||
if (which == 0)
|
||||
|
|
Loading…
Reference in a new issue