mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-24 12:39:59 +00:00
Protoization.
This commit is contained in:
parent
891fa26635
commit
16bce26c35
@ -1,3 +1,8 @@
|
||||
2000-09-11 Kevin Buettner <kevinb@redhat.com>
|
||||
|
||||
* irix4-nat.c (fetch_core_registers): Protoize.
|
||||
* irix5-nat.c (fetch_core_registers, find_solib): Protoize.
|
||||
|
||||
2000-09-06 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* lin-lwp.c (normal_mask, blocked_mask): New variables.
|
||||
|
@ -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)
|
||||
{
|
||||
|
@ -180,12 +180,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 5, 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)
|
||||
{
|
||||
@ -764,8 +774,7 @@ xfer_link_map_member (struct so_list *so_list_ptr, struct link_map *lm)
|
||||
*/
|
||||
|
||||
static struct so_list *
|
||||
find_solib (so_list_ptr)
|
||||
struct so_list *so_list_ptr; /* Last lm or NULL for first one */
|
||||
find_solib (struct so_list *so_list_ptr)
|
||||
{
|
||||
struct so_list *so_list_next = NULL;
|
||||
struct link_map *lm = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user