From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23335 invoked by alias); 4 Mar 2014 18:33:00 -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 23324 invoked by uid 89); 4 Mar 2014 18:33:00 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.9 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; Tue, 04 Mar 2014 18:32:59 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s24IWuxI005450 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 4 Mar 2014 13:32:57 -0500 Received: from barimba.redhat.com (ovpn-113-183.phx2.redhat.com [10.3.113.183]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s24IWtjT012049 for ; Tue, 4 Mar 2014 13:32:55 -0500 From: Tom Tromey To: gdb-patches@sourceware.org Subject: [RFC v5 0/8] enable target-async by default Date: Tue, 04 Mar 2014 18:33:00 -0000 Message-Id: <1393957974-4521-1-git-send-email-tromey@redhat.com> X-SW-Source: 2014-03/txt/msg00082.txt.bz2 This is version 5 of the patch series to enable target-async by default. Version 4 is here: https://sourceware.org/ml/gdb-patches/2013-10/msg00691.html Compared to version 4 this: * Has been rebased onto master, with this regression fix applied: https://sourceware.org/ml/gdb-patches/2014-03/msg00068.html * Has had all review comments addressed, as far as I can tell; in particular: * Patch #5 now includes a standalone test case. * Patch #7 has more comments and a simplified condition in the prompt printing code. * Patch #7 also now splits the back-end and MI notion of async; putting the back-end notion on a new "maint" command so that maintainers can more readily do some sync-mode testing on otherwise async-capable targets. This requires a new doc review as the manual needed more changes. Built and regtested on x86-64 Fedora 18, both in the ordinary mode and using native-gdbserver; and on AIX. Tom