From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 3b/AFLG1UGO5mw4AWB0awg (envelope-from ) for ; Wed, 19 Oct 2022 22:42:57 -0400 Received: by simark.ca (Postfix, from userid 112) id 42AB11E112; Wed, 19 Oct 2022 22:42:57 -0400 (EDT) Authentication-Results: simark.ca; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha256 header.s=default header.b=Jvoiia/y; dkim-atps=neutral X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-3.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id C574F1E0CB for ; Wed, 19 Oct 2022 22:42:56 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 9AC3B385DC1F for ; Thu, 20 Oct 2022 02:42:55 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9AC3B385DC1F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1666233775; bh=NKe8uluitX1TKlJBOAF9rYYD20NS32X2hr4nmQFf2IA=; h=Date:To:Subject:In-Reply-To:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=Jvoiia/yYw90jCBoscJNVLJB6BW4UA7KZ1hn1O59chDiHnNRGcnGKbvoA5lZbqaj+ HGm5WQeGQWckQRgfLOUTil7GZ8FVrP+W1/PvXZ0oxHr/qnKXRNosgDZSc2BSLfa6qw veI+IdCDUp9DuxBJ2FKTs6Oiexicu5uJ1zYeVV58= Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id 182213857360 for ; Thu, 20 Oct 2022 02:42:37 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 182213857360 Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-228-26tR5tGoOm2HlsJRAat1YQ-1; Wed, 19 Oct 2022 22:42:32 -0400 X-MC-Unique: 26tR5tGoOm2HlsJRAat1YQ-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.rdu2.redhat.com [10.11.54.2]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 55AF82A2AD64; Thu, 20 Oct 2022 02:42:32 +0000 (UTC) Received: from f35-zws-1 (unknown [10.2.17.47]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 102DB40C94EE; Thu, 20 Oct 2022 02:42:24 +0000 (UTC) Date: Wed, 19 Oct 2022 19:42:20 -0700 To: John Baldwin Subject: Re: [PATCH 2/2] Test stepping within a runtime loader / dynamic linker Message-ID: <20221019194220.34415484@f35-zws-1> In-Reply-To: References: <20221008035716.46147-1-kevinb@redhat.com> <20221008035716.46147-3-kevinb@redhat.com> Organization: Red Hat MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.2 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit 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: , From: Kevin Buettner via Gdb-patches Reply-To: Kevin Buettner Cc: gdb-patches@sourceware.org Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" On Mon, 10 Oct 2022 11:45:03 -0700 John Baldwin wrote: > In terms of the feature, this is indeed useful (I sometimes need to > step inside rtld myself). I think your implementation in patch 1 makes > sense. Thanks for looking it over. I've pushed this series. Kevin