From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25497 invoked by alias); 11 Jan 2008 00:14:41 -0000 Received: (qmail 25488 invoked by uid 22791); 11 Jan 2008 00:14:40 -0000 X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.45.13) by sourceware.org (qpsmtpd/0.31) with ESMTP; Fri, 11 Jan 2008 00:14:22 +0000 Received: from zps37.corp.google.com (zps37.corp.google.com [172.25.146.37]) by smtp-out.google.com with ESMTP id m0B0EIw0003928 for ; Thu, 10 Jan 2008 16:14:18 -0800 Received: from localhost (ruffy.corp.google.com [172.18.118.116]) by zps37.corp.google.com with ESMTP id m0B0EIUA009474 for ; Thu, 10 Jan 2008 16:14:18 -0800 Received: by localhost (Postfix, from userid 67641) id E61A61C71FC; Thu, 10 Jan 2008 16:14:17 -0800 (PST) To: gdb-patches@sourceware.org Subject: comment fixes in defs.h, target.c Message-Id: <20080111001417.E61A61C71FC@localhost> Date: Fri, 11 Jan 2008 00:14:00 -0000 From: dje@google.com (Doug Evans) X-IsSubscribed: yes 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 X-SW-Source: 2008-01/txt/msg00256.txt.bz2 Checked in as obvious. 2008-01-10 Doug Evans * defs.h (struct continuation_arg): Fix typo in comment. * target.c (target_translate_tls_address): Fix comment spelling error. Index: defs.h =================================================================== RCS file: /cvs/src/src/gdb/defs.h,v retrieving revision 1.214 diff -u -p -u -p -r1.214 defs.h --- defs.h 1 Jan 2008 22:53:09 -0000 1.214 +++ defs.h 11 Jan 2008 00:09:16 -0000 @@ -706,7 +706,7 @@ extern void free_command_lines (struct c /* To continue the execution commands when running gdb asynchronously. A continuation structure contains a pointer to a function to be called to finish the command, once the target has stopped. Such mechanism is - used bt the finish and until commands, and in the remote protocol + used by the finish and until commands, and in the remote protocol when opening an extended-remote connection. */ struct continuation_arg Index: target.c =================================================================== RCS file: /cvs/src/src/gdb/target.c,v retrieving revision 1.152 diff -u -p -u -p -r1.152 target.c --- target.c 1 Jan 2008 22:53:13 -0000 1.152 +++ target.c 11 Jan 2008 00:09:16 -0000 @@ -804,7 +804,7 @@ pop_target (void) internal_error (__FILE__, __LINE__, _("failed internal consistency check")); } -/* Using the objfile specified in BATON, find the address for the +/* Using the objfile specified in OBJFILE, find the address for the current thread's thread-local storage with offset OFFSET. */ CORE_ADDR target_translate_tls_address (struct objfile *objfile, CORE_ADDR offset)