From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id A59DB3858D1E for ; Wed, 21 Dec 2022 14:08:44 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org A59DB3858D1E Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gnu.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gnu.org Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1p7zlz-0006yD-8a; Wed, 21 Dec 2022 09:08:43 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=c/YhC2XHJUY6e7MJt0/LbBqV6w9a8rhkm1Ap4IhQSAk=; b=mU+FGXoygxE3 C3egaJkfauZF/93NDXE+yHeddVM0i13mOAYKot1b62UiHmsEf0tbREG0vvs4M6p64pxZXAcAAcWvW 6dx8xYE5uX4FoAhsPab7pYKCXzvYNS8ipxyy1Taugp4KgZ5NkFon+WwL6AbAo/RUN2cILP9r+na3N qS2ovLxmhIqha3u6Er1CjmtllKAGHKskvdNagNvwb7gmGDKOocFVdhmtrDTxlEm2eSVY+8AbL7zI6 eNu2MndH0fLaVKH4yAjghaoH6tfYLnvn8wFq4uwiuKG8nB54kiJ0O+nKdQk9VlNgJpPeOclYsIUzx pbFweI08hA9bNA++37QKIQ==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1p7zly-0000X5-HF; Wed, 21 Dec 2022 09:08:42 -0500 Date: Wed, 21 Dec 2022 16:08:37 +0200 Message-Id: <83sfh8aly2.fsf@gnu.org> From: Eli Zaretskii To: Christina Schimpe Cc: gdb-patches@sourceware.org, tom@tromey.com, pedro@palves.net, aburgess@redhat.com In-Reply-To: <20221221133958.2111768-2-christina.schimpe@intel.com> (message from Christina Schimpe on Wed, 21 Dec 2022 14:39:56 +0100) Subject: Re: [PATCH v4 1/3] gdb: Make global feature array a per-remote target array References: <20221221133958.2111768-1-christina.schimpe@intel.com> <20221221133958.2111768-2-christina.schimpe@intel.com> X-Spam-Status: No, score=1.9 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_BARRACUDACENTRAL,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: > From: Christina Schimpe > Cc: tom@tromey.com, > pedro@palves.net, > aburgess@redhat.com, > eliz@gnu.org, > Christina Schimpe > Date: Wed, 21 Dec 2022 14:39:56 +0100 > > gdb/NEWS | 14 + > gdb/doc/gdb.texinfo | 10 +- > gdb/remote.c | 1673 +++++++++-------- > gdb/testsuite/gdb.base/cond-eval-mode.exp | 9 +- > gdb/testsuite/gdb.base/dprintf.exp | 5 +- > gdb/testsuite/gdb.base/find-unmapped.exp | 5 +- > .../gdb.base/hbreak-in-shr-unsupported.exp | 4 +- > gdb/testsuite/gdb.base/remote.exp | 2 +- > .../gdb.multi/multi-target-info-inferiors.exp | 6 +- > gdb/testsuite/gdb.multi/multi-target.exp.tcl | 8 +- > .../connect-without-multi-process.exp | 4 +- > .../gdb.server/exit-multiple-threads.exp | 9 +- > gdb/testsuite/gdb.server/ext-restart.exp | 5 +- > gdb/testsuite/gdb.server/ext-wrapper.exp | 5 +- > gdb/testsuite/gdb.server/server-exec-info.exp | 5 +- > gdb/testsuite/gdb.server/server-kill.exp | 4 +- > .../gdb.server/stop-reply-no-thread-multi.exp | 8 +- > .../gdb.server/stop-reply-no-thread.exp | 9 +- > .../process-dies-while-handling-bp.exp | 9 +- > gdb/testsuite/gdb.trace/change-loc.exp | 4 +- > gdb/testsuite/gdb.trace/qtro.exp | 6 +- > 21 files changed, 974 insertions(+), 830 deletions(-) Thanks, the documentation parts are OK.