From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14984 invoked by alias); 6 Feb 2014 19:29:34 -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 14972 invoked by uid 89); 6 Feb 2014 19:29:33 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-3.2 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; Thu, 06 Feb 2014 19:29:32 +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 s16JTUPH013400 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 6 Feb 2014 14:29:30 -0500 Received: from barimba.redhat.com (ovpn-113-148.phx2.redhat.com [10.3.113.148]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s16JTUbU029516 for ; Thu, 6 Feb 2014 14:29:30 -0500 From: Tom Tromey To: gdb-patches@sourceware.org Subject: [RFC v2 0/9] move more code into common/ Date: Thu, 06 Feb 2014 19:29:00 -0000 Message-Id: <1391714966-12125-1-git-send-email-tromey@redhat.com> X-SW-Source: 2014-02/txt/msg00125.txt.bz2 This is a refresh of an earlier series to share more code between gdb and gdbserver. The original series is here: https://sourceware.org/ml/gdb-patches/2014-01/msg00747.html Changes since version 1: * Renamed new files to print-utils.[ch] (patch #1) * Updated some comments in response to Yao's review (patch #2) * Added missing _() markers (patch #2) * Realized that I didn't remove newly shared declarations in patch #2; deleted them. All other patches are, I believe, unchanged and approved by Pedro. Tom