From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28181 invoked by alias); 6 May 2013 19:17:17 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 28172 invoked by uid 89); 6 May 2013 19:17:16 -0000 X-Spam-SWARE-Status: No, score=-4.5 required=5.0 tests=AWL,BAYES_00,KHOP_THREADED,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_YE,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.1 Received: from mail-vb0-f48.google.com (HELO mail-vb0-f48.google.com) (209.85.212.48) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Mon, 06 May 2013 19:17:12 +0000 Received: by mail-vb0-f48.google.com with SMTP id q16so3247645vbe.35 for ; Mon, 06 May 2013 12:17:11 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type:x-gm-message-state; bh=+mqOIPR+ioh2/NynMxJ/O72P+6joz0S5tb2nRjqMjTE=; b=BGAKZTscdCjMqatBDqhweX0HkgHcv/cK2F1+njUWQCR98qPMberxc9/bjINvAHFK9s 15pXpe3weVVwN/g0wdkmAtOP9AigpsXSDA9gE1JPHlS0WbGs1Eg0WmYWIPxVZQCjWB8v VaNVgBB/2nhTwNJPt43c1GJhHjnQeZpcio5iQGGPmBTG7pTxV/+PSd55+xSxX+ApZz7z PWivMm3HAuPGoPBKXVMxyq2ZIuVTgdiRmBQN+YNTTfpef1VsZdmpsRY1oiRCFaY1n2QI VIHQYBwflmEWPNROjSanE25J01DkFfsMuvOuAJTQ1eo7Fit1fdnGcfzFFr865/7bzt4y i7Kw== MIME-Version: 1.0 X-Received: by 10.58.106.76 with SMTP id gs12mr4567967veb.15.1367867830408; Mon, 06 May 2013 12:17:10 -0700 (PDT) Received: by 10.220.173.7 with HTTP; Mon, 6 May 2013 12:17:10 -0700 (PDT) In-Reply-To: <87d2t4ymxl.fsf@fleche.redhat.com> References: <87d2t4ymxl.fsf@fleche.redhat.com> Date: Mon, 06 May 2013 19:17:00 -0000 Message-ID: Subject: Re: [patch] constify symfile.h section_offsets, section_addr_info From: Doug Evans To: Tom Tromey Cc: gdb-patches Content-Type: text/plain; charset=ISO-8859-1 X-Gm-Message-State: ALoCoQnfx93NGJZDLq9lLLk7bc8LvXvnjx+eZziRb5a++ytHnm5lGvsp9mdM1FgGaTrpDlrhxSRrUBArECXQOS3vHNd3eQcv7GjEBWeDfupCWLg2z/Z9wZzMR9JqPrqCVNRFS/vL8ud9tQVUrlns9EVagd8w1WUhUw+pNj+70s+y0AGyL35auH4UibIXhCI6huXw5FqP08YdWDaoNj6MqBCFM7A/EH6zcw== X-SW-Source: 2013-05/txt/msg00139.txt.bz2 On Mon, May 6, 2013 at 11:37 AM, Tom Tromey wrote: >>>>>> "Doug" == Doug Evans writes: > > Doug> While researching the bfd section count bug, > Doug> I found some things a bit confusing: some parameters seemed to be just for > Doug> input but weren't marked with const (thus I had to dig deeper than I might > Doug> otherwise have had to). > Doug> Thus I've gone through and constified a few things. > > Doug> I will commit this in a few days if there are no objections. > > It looks good to me. > Thanks for doing this. > > Tom With that, committed. Thanks!