From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10604 invoked by alias); 29 Jul 2013 16:45:35 -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 10535 invoked by uid 89); 29 Jul 2013 16:45:33 -0000 X-Spam-SWARE-Status: No, score=-4.4 required=5.0 tests=AWL,BAYES_40,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL,RDNS_NONE,SPF_HELO_PASS,SPF_PASS autolearn=no version=3.3.1 Received: from Unknown (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Mon, 29 Jul 2013 16:45:33 +0000 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r6TGjQKi017224 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 29 Jul 2013 12:45:26 -0400 Received: from barimba.redhat.com (ovpn-113-128.phx2.redhat.com [10.3.113.128]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id r6TGjPbD023425 for ; Mon, 29 Jul 2013 12:45:25 -0400 From: Tom Tromey To: gdb-patches@sourceware.org Subject: [PATCH 0/8] enable target-async by default Date: Mon, 29 Jul 2013 16:45:00 -0000 Message-Id: <1375116324-32092-1-git-send-email-tromey@redhat.com> X-SW-Source: 2013-07/txt/msg00716.txt.bz2 This series enables target-async by default. Right now, the target-async setting just exists to let users use another feature. This has always seemed weird, but not very important. However, now I am starting to have other reasons to want target-async enabled by default when possible (in particular this is good for multi-target). Most of this series is straightforward. It begins with some latent bug fixes, the by pulling in some related patches of Pedros (see patches 3-5), continues by fixing some CLI bugs revealed if target-async is always on; and finishes by fixing up MI and the docs. The last patch is the one with the grossest hacks. I built and regtested this on x86-64 Fedora 18. FWIW I did not clear out the dead code from linux-nat.c yet. I plan to do that in a follow-up. Tom