2012-03-01 Pedro Alves <palves@redhat.com>
* linux-tdep.c (linux_has_shared_address_space): Make static. Add gdbarch parameter. (linux_init_abi): Install it as has_shared_address_space gdbarch callback.
This commit is contained in:
parent
44d0cd3be3
commit
33fbcbee30
2 changed files with 11 additions and 2 deletions
|
@ -173,8 +173,8 @@ linux_get_siginfo_type (struct gdbarch *gdbarch)
|
|||
return siginfo_type;
|
||||
}
|
||||
|
||||
int
|
||||
linux_has_shared_address_space (void)
|
||||
static int
|
||||
linux_has_shared_address_space (struct gdbarch *gdbarch)
|
||||
{
|
||||
/* Determine whether we are running on uClinux or normal Linux
|
||||
kernel. */
|
||||
|
@ -860,6 +860,8 @@ linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
|
|||
set_gdbarch_info_proc (gdbarch, linux_info_proc);
|
||||
set_gdbarch_find_memory_regions (gdbarch, linux_find_memory_regions);
|
||||
set_gdbarch_make_corefile_notes (gdbarch, linux_make_corefile_notes_1);
|
||||
set_gdbarch_has_shared_address_space (gdbarch,
|
||||
linux_has_shared_address_space);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue