From a034fba4ecd6c51e17a6a04df63bdad337fe8b62 Mon Sep 17 00:00:00 2001 From: Elena Zannoni Date: Thu, 27 Apr 2000 15:11:14 +0000 Subject: 2000-04-27 Elena Zannoni * cxux-nat.c (add_shared_symbol_files): Don't treat .text section as special in the section_addr_info structure. * pa64solib.c (pa64_solib_add_solib_objfile): Ditto. * osfsolib.c (symbol_add_stub): Ditto. * irix5-nat.c (symbol_add_stub): Ditto. --- gdb/cxux-nat.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gdb/cxux-nat.c') diff --git a/gdb/cxux-nat.c b/gdb/cxux-nat.c index 9db528a..8c16bce 100644 --- a/gdb/cxux-nat.c +++ b/gdb/cxux-nat.c @@ -386,7 +386,8 @@ add_shared_symbol_files () { struct section_addr_info section_addrs; memset (§ion_addrs, 0, sizeof (section_addrs)); - section_addrs.text_addr = lms.l_addr; + section_addrs.other[0].addr = lms.l_addr; + section_addrs.other[0].name = ".text"; symbol_file_add (path_name, 1, §ion_addrs, 0, 0); free (path_name); } -- cgit v1.1