From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27710 invoked by alias); 26 Mar 2009 21:38:19 -0000 Received: (qmail 27702 invoked by uid 22791); 26 Mar 2009 21:38:18 -0000 X-SWARE-Spam-Status: No, hits=-2.2 required=5.0 tests=AWL,BAYES_00,SPF_PASS 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.43rc1) with ESMTP; Thu, 26 Mar 2009 21:38:13 +0000 Received: from spaceape7.eur.corp.google.com (spaceape7.eur.corp.google.com [172.28.16.141]) by smtp-out.google.com with ESMTP id n2QLc9qX031859 for ; Thu, 26 Mar 2009 14:38:09 -0700 Received: from localhost (ruffy.mtv.corp.google.com [172.18.118.116]) by spaceape7.eur.corp.google.com with ESMTP id n2QLc78Q023189 for ; Thu, 26 Mar 2009 14:38:07 -0700 Received: by localhost (Postfix, from userid 67641) id 2D1771C74E3; Thu, 26 Mar 2009 14:38:07 -0700 (PDT) To: gdb-patches@sourceware.org Subject: [ob] inferior_thread: Remove "extern" in definition. Message-Id: <20090326213807.2D1771C74E3@localhost> Date: Thu, 26 Mar 2009 22:06:00 -0000 From: dje@google.com (Doug Evans) X-System-Of-Record: true 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: 2009-03/txt/msg00597.txt.bz2 Hi. Committed as obvious. 2009-03-26 Doug Evans * thread.c (inferior_thread) Remove "extern" in definition. diff -u -p -r1.106 thread.c --- thread.c 25 Mar 2009 21:53:10 -0000 1.106 +++ thread.c 26 Mar 2009 21:28:39 -0000 @@ -72,7 +72,7 @@ enum thread_state THREAD_EXITED, }; -extern struct thread_info* +struct thread_info* inferior_thread (void) { struct thread_info *tp = find_thread_pid (inferior_ptid);