diff options
author | Randolph Chung <tausq@debian.org> | 2004-11-13 02:24:34 +0000 |
---|---|---|
committer | Randolph Chung <tausq@debian.org> | 2004-11-13 02:24:34 +0000 |
commit | b82f24bfcccac22405fdd57699093898abe88837 (patch) | |
tree | 8e8a3d3fbcf9be6a6cda7195021c1f518755bae1 /gdb/pa64solib.c | |
parent | 89676665cf9b9365020080047d199d67c2122378 (diff) | |
download | gdb-b82f24bfcccac22405fdd57699093898abe88837.zip gdb-b82f24bfcccac22405fdd57699093898abe88837.tar.gz gdb-b82f24bfcccac22405fdd57699093898abe88837.tar.bz2 |
2004-11-12 Randolph Chung <tausq@debian.org>
* pa64solib.c (pa64_solib_thread_start_addr): Rename from
so_lib_thread_start_addr.
* pa64solib.h (so_list): Forward declare.
(pa64_solib_thread_start_addr): Prototype.
* somsolib.c (SHL_LOAD, SHL_UNLOAD): Define if not already defined.
(no_shared_libraries): Remove.
(som_solib_thread_start_addr): Rename from so_lib_thread_start_addr.
* somsolib.h (som_solib_thread_start_addr): Likewise; prototype.
* hpread.c (hpread_process_one_debug_symbol): Use either the som or
the elf solib handler to find the start address.
* config/pa/hppahpux.mh (NATDEPFILES): Move target-specific support
files to the target makefile.
* config/pa/hpux1020.mh (NATDEPFILES): Likewise.
* config/pa/hpux11.mh (NATDEPFILES): Likewise.
* config/pa/hpux11w.mh (NATDEPFILES): Likewise.
* config/pa/hppa64.mt (TDEPFILES): Put target-specific support
files for symbol reading and shared library handling here.
* config/pa/hppahpux.mt (TDEPFILES): Likewise.
(PA_SOM_ONLY): Define so we can build a 32-bit SOM only target
without bringing in 64-bit support.
Diffstat (limited to 'gdb/pa64solib.c')
-rw-r--r-- | gdb/pa64solib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/pa64solib.c b/gdb/pa64solib.c index 076d6cb..06237df 100644 --- a/gdb/pa64solib.c +++ b/gdb/pa64solib.c @@ -923,7 +923,7 @@ threshold in megabytes. Is ignored when using `sharedlibrary'.", /* Get some HPUX-specific data from a shared lib. */ CORE_ADDR -so_lib_thread_start_addr (struct so_list *so) +pa64_solib_thread_start_addr (struct so_list *so) { return so->pa64_solib_desc.tls_start_addr; } |