From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11097 invoked by alias); 12 Jun 2005 00:04:56 -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 11085 invoked by uid 22791); 12 Jun 2005 00:04:52 -0000 Received: from sibelius.xs4all.nl (HELO sibelius.xs4all.nl) (82.92.89.47) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Sun, 12 Jun 2005 00:04:52 +0000 Received: from elgar.sibelius.xs4all.nl (root@elgar.sibelius.xs4all.nl [192.168.0.2]) by sibelius.xs4all.nl (8.13.0/8.13.0) with ESMTP id j5C04ZvI005505; Sun, 12 Jun 2005 02:04:35 +0200 (CEST) Received: from elgar.sibelius.xs4all.nl (kettenis@localhost.sibelius.xs4all.nl [127.0.0.1]) by elgar.sibelius.xs4all.nl (8.13.4/8.13.3) with ESMTP id j5C04Zj2018694; Sun, 12 Jun 2005 02:04:35 +0200 (CEST) Received: (from kettenis@localhost) by elgar.sibelius.xs4all.nl (8.13.4/8.13.4/Submit) id j5C04UFe023809; Sun, 12 Jun 2005 02:04:30 +0200 (CEST) Date: Sun, 12 Jun 2005 00:04:00 -0000 Message-Id: <200506120004.j5C04UFe023809@elgar.sibelius.xs4all.nl> From: Mark Kettenis To: kevinb@redhat.com CC: m.m.kettenis@alumnus.utwente.nl, gdb-patches@sources.redhat.com, manjo@austin.ibm.com In-reply-to: <20050603140930.06e1960f@ironwood.lan> (message from Kevin Buettner on Fri, 3 Jun 2005 14:09:30 -0700) Subject: Re: [RFC] solib-svr4.c gdb_byteised. References: <7320928157066569@webhare> <20050603140930.06e1960f@ironwood.lan> X-SW-Source: 2005-06/txt/msg00115.txt.bz2 Date: Fri, 3 Jun 2005 14:09:30 -0700 From: Kevin Buettner On Thu, 26 May 2005 22:39:30 +0000 "M.M. Kettenis" wrote: > Manoj Iyer wrote: > > > > > solib-svr4.c compiles without errors on ppc64 with gcc4.0. Here is a > > patch... > > > > > > 2005-05-26 Manoj Iyer > > > > * solib-svr4.c: lm_info structure convert type of lm to gdb_byte. > > (elf_locate_base): Converted types of buf, bufend, pbuf, to gdb_byte. > > (first_link_map_member): Converted type of r_map_buf to gdb_byte. > > (open_symbol_file_object): Converted type of l_name_buf to gdb_byte. > > (svr4_fetch_objfile_link_map): Converted type of l_name_buf to > > gdb_byte. > > I think the l_name_buf change is wrong since it *is* supposed to be > a (character) string. Actually, it's the address of a character string. I think Manoj's change is correct. Indeed it is. Sorry 'bout the confusion I caused. Mark