From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4258 invoked by alias); 11 Jun 2003 22:54:41 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 4229 invoked from network); 11 Jun 2003 22:54:40 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 11 Jun 2003 22:54:40 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id h5BMseH09112 for ; Wed, 11 Jun 2003 18:54:40 -0400 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id h5BMseI11639 for ; Wed, 11 Jun 2003 18:54:40 -0400 Received: from localhost.localdomain (vpn50-31.rdu.redhat.com [172.16.50.31]) by pobox.corp.redhat.com (8.11.6/8.11.6) with ESMTP id h5BMsdE21882; Wed, 11 Jun 2003 18:54:39 -0400 Received: (from kev@localhost) by localhost.localdomain (8.11.6/8.11.6) id h5BMsY127223; Wed, 11 Jun 2003 15:54:34 -0700 Date: Wed, 11 Jun 2003 22:54:00 -0000 From: Kevin Buettner Message-Id: <1030611225434.ZM27222@localhost.localdomain> In-Reply-To: Jim Blandy "[ppc64-linux]: Recognize dl event entry point symbol" (Jun 11, 8:02am) References: To: Jim Blandy , gdb-patches@sources.redhat.com Subject: Re: [ppc64-linux]: Recognize dl event entry point symbol MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2003-06/txt/msg00396.txt.bz2 On Jun 11, 8:02am, Jim Blandy wrote: > 2003-06-11 Jim Blandy > > * solib-svr4.c (solib_break_names): Recognize the 64-bit PowerPC > Linux entry point symbols for _dl_debug_state, too. > > Index: gdb/solib-svr4.c > =================================================================== > RCS file: /cvs/src/src/gdb/solib-svr4.c,v > retrieving revision 1.32.8.1 > diff -c -r1.32.8.1 solib-svr4.c > *** gdb/solib-svr4.c 11 Jun 2003 08:57:46 -0000 1.32.8.1 > --- gdb/solib-svr4.c 11 Jun 2003 12:59:25 -0000 > *************** > *** 79,84 **** > --- 79,85 ---- > "r_debug_state", > "_r_debug_state", > "_dl_debug_state", > + "._dl_debug_state", > "rtld_db_dlactivity", > "_rtld_debug_state", > NULL Okay. (I wonder why the tools implementor's felt compelled to add that leading ".".) Kevin