Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [PATCH] Ignore the first entry returned by svr4_current_sos_via_xfer_libraries for dynamically linked programs
@ 2013-05-28 18:31 Ben Cheng
  2013-05-29 10:17 ` Gary Benson
                   ` (2 more replies)
  0 siblings, 3 replies; 14+ messages in thread
From: Ben Cheng @ 2013-05-28 18:31 UTC (permalink / raw)
  To: gdb-patches

[-- Attachment #1: Type: text/plain, Size: 644 bytes --]

The first entry in the xml list returned by
svr4_current_sos_via_xfer_libraries() is the executable itself. For
dynamically linked programs, the existing code that deals with
gdbserver that doesn't support svr4_current_sos_via_xfer_libraries is
ignoring the first entry. This patch applies the same logic on the
result returned by svr4_current_sos_via_xfer_libraries().

See GDB PR/15507 for more details.

--

2013-05-28  Ben Cheng  <bccheng@android.com>

    PR gdb/15507:
    * solib-svr4.c (svr4_current_sos): Ignore the first library list
    entry returned by svr4_current_sos_via_xfer_libraries call for
    dynamically linked programs.

[-- Attachment #2: diff.txt --]
[-- Type: text/plain, Size: 656 bytes --]

Index: solib-svr4.c
===================================================================
RCS file: /cvs/src/src/gdb/solib-svr4.c,v
retrieving revision 1.178
diff -r1.178 solib-svr4.c
1285c1285,1291
<       return library_list.head ? library_list.head : svr4_default_sos ();
---
>       /* Use the same logic that determines the 'ignore_first' variable
>          below. PR - 15507 */
>       if (exec_bfd && bfd_get_section_by_name (exec_bfd, ".dynamic") == NULL)
> 	return library_list.head ? library_list.head : svr4_default_sos ();
>       else
> 	return library_list.head && library_list.head->next ?
> 	  library_list.head->next : svr4_default_sos ();

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2013-06-10 19:34 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-28 18:31 [PATCH] Ignore the first entry returned by svr4_current_sos_via_xfer_libraries for dynamically linked programs Ben Cheng
2013-05-29 10:17 ` Gary Benson
2013-06-04  8:58 ` Jan Kratochvil
2013-06-04 17:19   ` Ben Cheng
2013-06-04 18:07 ` Jan Kratochvil
2013-06-04 18:18   ` Ben Cheng
2013-06-04 20:23     ` Jan Kratochvil
2013-06-04 20:36       ` Ben Cheng
2013-06-04 20:45         ` Ben Cheng
2013-06-04 20:57           ` Jan Kratochvil
2013-06-04 21:21             ` Ben Cheng
2013-06-05 11:38               ` [patchv2] " Jan Kratochvil
     [not found]                 ` <51AF4C5B.5080104@redhat.com>
2013-06-09 18:08                   ` [commit] " Jan Kratochvil
2013-06-11  6:32                     ` Ben Cheng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox