mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08: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>
|
2000-09-06 Mark Kettenis <kettenis@gnu.org>
|
||||||
|
|
||||||
* lin-lwp.c (normal_mask, blocked_mask): New variables.
|
* lin-lwp.c (normal_mask, blocked_mask): New variables.
|
||||||
|
@ -160,12 +160,22 @@ get_longjmp_target (CORE_ADDR *pc)
|
|||||||
return 1;
|
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
|
static void
|
||||||
fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr)
|
fetch_core_registers (char *core_reg_sect, unsigned core_reg_size,
|
||||||
char *core_reg_sect;
|
int which, CORE_ADDR reg_addr)
|
||||||
unsigned core_reg_size;
|
|
||||||
int which; /* Unused */
|
|
||||||
CORE_ADDR reg_addr; /* Unused */
|
|
||||||
{
|
{
|
||||||
if (core_reg_size != REGISTER_BYTES)
|
if (core_reg_size != REGISTER_BYTES)
|
||||||
{
|
{
|
||||||
|
@ -180,12 +180,22 @@ get_longjmp_target (CORE_ADDR *pc)
|
|||||||
return 1;
|
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
|
static void
|
||||||
fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr)
|
fetch_core_registers (char *core_reg_sect, unsigned core_reg_size,
|
||||||
char *core_reg_sect;
|
int which, CORE_ADDR reg_addr)
|
||||||
unsigned core_reg_size;
|
|
||||||
int which; /* Unused */
|
|
||||||
CORE_ADDR reg_addr; /* Unused */
|
|
||||||
{
|
{
|
||||||
if (core_reg_size == REGISTER_BYTES)
|
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 *
|
static struct so_list *
|
||||||
find_solib (so_list_ptr)
|
find_solib (struct so_list *so_list_ptr)
|
||||||
struct so_list *so_list_ptr; /* Last lm or NULL for first one */
|
|
||||||
{
|
{
|
||||||
struct so_list *so_list_next = NULL;
|
struct so_list *so_list_next = NULL;
|
||||||
struct link_map *lm = NULL;
|
struct link_map *lm = NULL;
|
||||||
|
Loading…
Reference in New Issue
Block a user