diff options
author | Scott Bambrough <scottb@netwinder.org> | 2000-05-25 18:24:33 +0000 |
---|---|---|
committer | Scott Bambrough <scottb@netwinder.org> | 2000-05-25 18:24:33 +0000 |
commit | a52e6aac8a1152ba0a50d1526d66d0fc3fd0feda (patch) | |
tree | 1cbbf3ad1843c9e64163f3863ed6b5fd26bc1bc0 /gdb/config | |
parent | 7dfa765cc10b73edb8538aafbedd49acdeada1e8 (diff) | |
download | gdb-a52e6aac8a1152ba0a50d1526d66d0fc3fd0feda.zip gdb-a52e6aac8a1152ba0a50d1526d66d0fc3fd0feda.tar.gz gdb-a52e6aac8a1152ba0a50d1526d66d0fc3fd0feda.tar.bz2 |
Replace SKIP_SOLIB_RESOLVER stub with something that works.
2000-05-25 Scott Bambrough <scottb@netwinder.org>
* arm-linux-tdep.c (find_minsym_and_objfile): New.
(skip_hurd_resolver): New.
(arm_linux_skip_solib_resolver): New.
(arm_skip_solib_resolver): Removed.
* config/arm/tm-linux.h (SKIP_SOLIB_RESOLVER): Changed to use
arm_linux_skip_solib_resolver.
Diffstat (limited to 'gdb/config')
-rw-r--r-- | gdb/config/arm/tm-linux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/config/arm/tm-linux.h b/gdb/config/arm/tm-linux.h index af2e809..9dcd666 100644 --- a/gdb/config/arm/tm-linux.h +++ b/gdb/config/arm/tm-linux.h @@ -118,8 +118,8 @@ extern CORE_ADDR find_solib_trampoline_target (CORE_ADDR pc); need to skip over the dynamic linker call. This function decides when to skip, and where to skip to. See the comments for SKIP_SOLIB_RESOLVER at the top of infrun.c. */ -extern CORE_ADDR arm_skip_solib_resolver (CORE_ADDR pc); -#define SKIP_SOLIB_RESOLVER arm_skip_solib_resolver +extern CORE_ADDR arm_linux_skip_solib_resolver (CORE_ADDR pc); +#define SKIP_SOLIB_RESOLVER arm_linux_skip_solib_resolver /* When we call a function in a shared library, and the PLT sends us into the dynamic linker to find the function's real address, we |