From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11778 invoked by alias); 11 Jun 2014 18:53:22 -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 11766 invoked by uid 89); 11 Jun 2014 18:53:21 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.1 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 11 Jun 2014 18:53:21 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s5BIrJEu016237 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Wed, 11 Jun 2014 14:53:19 -0400 Received: from barimba.redhat.com (ovpn-113-103.phx2.redhat.com [10.3.113.103]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s5BIrJRE005158 for ; Wed, 11 Jun 2014 14:53:19 -0400 From: Tom Tromey To: gdb-patches@sourceware.org Subject: [PATCH 0/7] more constification Date: Wed, 11 Jun 2014 18:53:00 -0000 Message-Id: <1402512797-6082-1-git-send-email-tromey@redhat.com> X-SW-Source: 2014-06/txt/msg00468.txt.bz2 This series constifies a few more things in gdb. A few of the patches are very basic and #4 is downright trivial. Patch #6 casts away const in a couple spots. There's a justification in the patch; but I also wanted to add that the casts only affect mdebugread.c, which can't really be said to be actively maintained in any case. Some of these patches are part of a larger work to constify the argument pass to gdb commands. This longer series isn't finished yet; but it simplifies to the work to put patches in bottom-up and mildly improves gdb in the process. Tom