From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5011 invoked by alias); 6 Jun 2005 22:26:11 -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 4827 invoked by uid 22791); 6 Jun 2005 22:25:51 -0000 Received: from e32.co.us.ibm.com (HELO e32.co.us.ibm.com) (32.97.110.130) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Mon, 06 Jun 2005 22:25:51 +0000 Received: from d03relay04.boulder.ibm.com (d03relay04.boulder.ibm.com [9.17.195.106]) by e32.co.us.ibm.com (8.12.10/8.12.9) with ESMTP id j56MPm9q746998 for ; Mon, 6 Jun 2005 18:25:48 -0400 Received: from d03av02.boulder.ibm.com (d03av02.boulder.ibm.com [9.17.195.168]) by d03relay04.boulder.ibm.com (8.12.10/NCO/VER6.6) with ESMTP id j56MPles080406 for ; Mon, 6 Jun 2005 16:25:47 -0600 Received: from d03av02.boulder.ibm.com (loopback [127.0.0.1]) by d03av02.boulder.ibm.com (8.12.11/8.13.3) with ESMTP id j56MPlQl006890 for ; Mon, 6 Jun 2005 16:25:47 -0600 Received: from austin.ibm.com (netmail2.austin.ibm.com [9.41.248.176]) by d03av02.boulder.ibm.com (8.12.11/8.12.11) with ESMTP id j56MPl9p006871; Mon, 6 Jun 2005 16:25:47 -0600 Received: from lazy.austin.ibm.com (lazy.austin.ibm.com [9.53.94.97]) by austin.ibm.com (8.12.10/8.12.10) with ESMTP id j56MPkeQ114304; Mon, 6 Jun 2005 17:25:46 -0500 Date: Mon, 06 Jun 2005 22:26:00 -0000 From: Manoj Iyer X-X-Sender: manjo@lazy To: Kevin Buettner cc: gdb-patches@sources.redhat.com Subject: [PATCH] solib-svr4.c gdb_byteised. In-Reply-To: <20050603141436.1b8d24aa@ironwood.lan> Message-ID: References: <20050603141436.1b8d24aa@ironwood.lan> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-SW-Source: 2005-06/txt/msg00048.txt.bz2 Just commited the following patch. 2005-06-06 Manoj Iyer * solib-svr4.c: Change 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. Thanks ----- manjo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + Cogito ergo sum + +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ On Fri, 3 Jun 2005, Kevin Buettner wrote: > On Thu, 26 May 2005 17:20:32 -0500 (CDT) > Manoj Iyer wrote: > > > 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. > > This patch is okay with me. Just fix the first line of your ChangeLog > entry as follows: > > * solib-svr4.c: (struct lm_info): Change type of ``lm'' to gdb_byte. > > Thanks! > > Kevin >