From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx2.freebsd.org (mx2.freebsd.org [96.47.72.81]) by sourceware.org (Postfix) with ESMTPS id AA7003857C58 for ; Wed, 6 Oct 2021 15:43:50 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org AA7003857C58 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=FreeBSD.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [96.47.72.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "R3" (verified OK)) by mx2.freebsd.org (Postfix) with ESMTPS id 6B67287176 for ; Wed, 6 Oct 2021 15:43:50 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HPdzB2Kfwz3rgr for ; Wed, 6 Oct 2021 15:43:50 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from John-Baldwins-MacBook-Pro.local (ralph.baldwin.cx [66.234.199.215]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: jhb) by smtp.freebsd.org (Postfix) with ESMTPSA id EDBFBD928 for ; Wed, 6 Oct 2021 15:43:49 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Subject: [PING] [PATCH v2 00/13] FreeBSD target async mode and related refactoring From: John Baldwin To: gdb-patches@sourceware.org References: <20210803185000.22171-1-jhb@FreeBSD.org> Message-ID: <5f8d2149-4c3d-ee9c-772d-f36b362d3777@FreeBSD.org> Date: Wed, 6 Oct 2021 08:43:48 -0700 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:78.0) Gecko/20100101 Thunderbird/78.14.0 MIME-Version: 1.0 In-Reply-To: <20210803185000.22171-1-jhb@FreeBSD.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-3.8 required=5.0 tests=BAYES_00, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Oct 2021 15:43:51 -0000 On 8/3/21 11:49 AM, John Baldwin wrote: > Changes since the RFC: > > - The series has been teste on Linux x86-64 and I did not see any > regressions. > > - The first patch includes some changes from Lancelot Six to only > compile event-pipe.cc for platforms supporting pipe() or pipe2(). I > haven't tested this on a Windows build however (and don't have an > easy way to do so). > > - Patches 4 through 6 are new based on Pedro's replies to some of my > earlier questions. > > - Patch 7 was originally part of the main "fbsd async" patch but I > split it out so it is a bit clearer to other platforms which > inherit from inf-ptrace which parts are shared vs platform-specific. > It also now uses TARGET_WAITKIND_NO_RESUMED for the ECHILD case. > > - Patches 12 and 13 are new and are further refactorings. I could > perhaps move them earlier before the main "fbsd async" patch > if they are ok. It would make the fbsd async patch itself a > bit smaller if so, but for the last patch in particular it might > also be useful to see two targets being updated to understand > which parts were pulled up into inf-ptrace? Ping. -- John Baldwin