gdb/
* solib-svr4.c (svr4_exec_displacement): New comment for entry_point. Replace exec_entry_point call by bfd_get_start_address.
This commit is contained in:
parent
9f2982ff0b
commit
4175219298
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||||
|
|
||||||
|
* solib-svr4.c (svr4_exec_displacement): New comment for entry_point.
|
||||||
|
Replace exec_entry_point call by bfd_get_start_address.
|
||||||
|
|
||||||
2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
|
2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||||
|
|
||||||
Support Valgrind attachments broken by the PIE support.
|
Support Valgrind attachments broken by the PIE support.
|
||||||
|
|
|
@ -1620,13 +1620,15 @@ static CORE_ADDR
|
||||||
svr4_exec_displacement (void)
|
svr4_exec_displacement (void)
|
||||||
{
|
{
|
||||||
int found;
|
int found;
|
||||||
|
/* ENTRY_POINT is a possible function descriptor - before
|
||||||
|
a call to gdbarch_convert_from_func_ptr_addr. */
|
||||||
CORE_ADDR entry_point;
|
CORE_ADDR entry_point;
|
||||||
|
|
||||||
if (exec_bfd == NULL)
|
if (exec_bfd == NULL)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (target_auxv_search (¤t_target, AT_ENTRY, &entry_point) == 1)
|
if (target_auxv_search (¤t_target, AT_ENTRY, &entry_point) == 1)
|
||||||
return entry_point - exec_entry_point (exec_bfd, ¤t_target);
|
return entry_point - bfd_get_start_address (exec_bfd);
|
||||||
|
|
||||||
return svr4_static_exec_displacement ();
|
return svr4_static_exec_displacement ();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue