From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21761 invoked by alias); 26 Apr 2005 23:39:07 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 21752 invoked from network); 26 Apr 2005 23:39:04 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 26 Apr 2005 23:39:04 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id j3QNcx6f014768 for ; Tue, 26 Apr 2005 19:39:04 -0400 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id j3QNcxO10924; Tue, 26 Apr 2005 19:38:59 -0400 Received: from localhost.localdomain (vpn50-19.rdu.redhat.com [172.16.50.19]) by pobox.corp.redhat.com (8.12.8/8.12.8) with ESMTP id j3QNcxbR027737; Tue, 26 Apr 2005 19:38:59 -0400 Received: from ironwood.lan (ironwood.lan [192.168.64.8]) by localhost.localdomain (8.12.11/8.12.10) with ESMTP id j3QNcrv1021638; Tue, 26 Apr 2005 16:38:53 -0700 Date: Tue, 26 Apr 2005 23:39:00 -0000 From: Kevin Buettner To: Eli Zaretskii Cc: gdb-patches@sources.redhat.com Subject: Re: [RFC] remote.c: Add remote TLS support Message-ID: <20050426163853.5d1503ca@ironwood.lan> In-Reply-To: <01c5473d$Blat.v2.4$09af7cc0@zahav.net.il> References: <20050331162017.0e47552c@ironwood.lan> <20050415130913.50ee721c@ironwood.lan> <01c5473d$Blat.v2.4$09af7cc0@zahav.net.il> Organization: Red Hat Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-SW-Source: 2005-04/txt/msg00350.txt.bz2 On Fri, 22 Apr 2005 16:12:09 +0300 "Eli Zaretskii" wrote: > > Date: Fri, 15 Apr 2005 13:09:13 -0700 > > From: Kevin Buettner > > > > With that out of the way, I ended up committing the following changes, > > only modified slightly from my earlier posting. (It no longer > > refers to the deprecated function and I removed some unused variables > > that were leftovers from an even earlier version of the work.) > > > > * remote.c (remote_protocol_qGetTLSAddr): New static global variable. > > (set_remote_protocol_qGetTLSAddr_packet_cmd) > > (show_remote_protocol_qGetTLSAddr_packet_cmd) > > (remote_get_thread_local_address): New functions. > > (init_all_packet_configs): Initialize remote_protocol_qGetTLSAddr > > variable. > > (init_remote_ops): Initialize ``to_get_thread_local_address'' in > > target vector. > > (show_remote_cmd): Call show_remote_protocol_qGetTLS_Addr_packet_cmd(). > > (_initialize_remote): Register the following commands: > > "set remote get-thread-local-storage-address-packet" and > > "show remote get-thread-local-address-packet". > > I added documentation for these 2 new commands, see below. > > Committed. > > 2005-04-22 Eli Zaretskii > > * gdb.texinfo (Remote configuration): Document "set/show > get-thread-local-storage-address". Add cross-reference to the > description of the qGetTLSAddr packet. > (General Query Packets): Mention "set remote > get-thread-local-storage-address" and add a reference to its > description. Thanks for doing this! Kevin