From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11082 invoked by alias); 24 Aug 2010 20:20:24 -0000 Received: (qmail 11073 invoked by uid 22791); 24 Aug 2010 20:20:23 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (38.113.113.100) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 24 Aug 2010 20:20:19 +0000 Received: (qmail 25822 invoked from network); 24 Aug 2010 20:20:18 -0000 Received: from unknown (HELO orlando.localnet) (pedro@127.0.0.2) by mail.codesourcery.com with ESMTPA; 24 Aug 2010 20:20:18 -0000 From: Pedro Alves To: gdb-patches@sourceware.org Subject: [gdbserver] remove unused declaration Date: Tue, 24 Aug 2010 20:20:00 -0000 User-Agent: KMail/1.13.2 (Linux/2.6.33-29-realtime; KDE/4.4.2; x86_64; ; ) MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201008242120.15481.pedro@codesourcery.com> 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: 2010-08/txt/msg00423.txt.bz2 I've applied this patch to remove a declaration of an function that doesn't exist. It actually never existed in the FSF tree -- it appears I've let this sneak in with the fast tracepoints support. -- Pedro Alves 2010-08-24 Pedro Alves * linux-low.h (linux_thread_area): Delete declaration. --- gdb/gdbserver/linux-low.h | 1 - 1 file changed, 1 deletion(-) Index: src/gdb/gdbserver/linux-low.h =================================================================== --- src.orig/gdb/gdbserver/linux-low.h 2010-08-22 22:07:50.000000000 +0100 +++ src/gdb/gdbserver/linux-low.h 2010-08-22 22:08:09.000000000 +0100 @@ -259,7 +259,6 @@ int elf_64_file_p (const char *file); void linux_attach_lwp (unsigned long pid); struct lwp_info *find_lwp_pid (ptid_t ptid); -int linux_get_thread_area (int lwpid, CORE_ADDR *area); /* From thread-db.c */ int thread_db_init (int use_events);