From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 659 invoked by alias); 14 Nov 2004 18:53:41 -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 476 invoked from network); 14 Nov 2004 18:53:29 -0000 Received: from unknown (HELO nevyn.them.org) (66.93.172.17) by sourceware.org with SMTP; 14 Nov 2004 18:53:29 -0000 Received: from drow by nevyn.them.org with local (Exim 4.34 #1 (Debian)) id 1CTPVB-0002QB-E4; Sun, 14 Nov 2004 13:53:29 -0500 Date: Sun, 14 Nov 2004 18:53:00 -0000 From: Daniel Jacobowitz To: Michael Snyder , gdb-patches@sources.redhat.com, Mark Kettenis Subject: Re: [rfa] Rename thread-db.c to linux-thread-db.c. Message-ID: <20041114185329.GB4138@nevyn.them.org> Mail-Followup-To: Michael Snyder , gdb-patches@sources.redhat.com, Mark Kettenis References: <20041109032415.GA4083@nevyn.them.org> <41951C71.7090808@redhat.com> <20041114184859.GA4138@nevyn.them.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20041114184859.GA4138@nevyn.them.org> User-Agent: Mutt/1.5.5.1+cvs20040105i X-SW-Source: 2004-11/txt/msg00308.txt.bz2 On Sun, Nov 14, 2004 at 01:48:59PM -0500, Daniel Jacobowitz wrote: > On Fri, Nov 12, 2004 at 12:26:25PM -0800, Michael Snyder wrote: > > Daniel Jacobowitz wrote: > > >Mark asked me to rename thread-db.c, to make it clear that it is a > > >GNU/Linux > > >specific file, before I made further structural changes to it. This patch > > >renames it to linux-thread-db.c. > > > > > >No djgpp tweaks are necessary (it doesn't conflict with anything; we used > > >to > > >have a linux-thread.c, IIRC, but it's long dead). > > > > > >OK to commit? I've omitted the actual rename from the patch. > > > > > > > OK with me. > > Thanks, committed the attached (I missed one Makefile rule last time). And I got it wrong this time! Also committed the attached. -- Daniel Jacobowitz 2004-11-14 Daniel Jacobowitz * Makefile.in (linux-thread-db.o): Fix typo in last change. Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/Makefile.in,v retrieving revision 1.667 diff -u -p -r1.667 Makefile.in --- Makefile.in 14 Nov 2004 18:47:49 -0000 1.667 +++ Makefile.in 14 Nov 2004 18:52:30 -0000 @@ -2612,7 +2612,7 @@ target.o: target.c $(defs_h) $(gdb_strin thread.o: thread.c $(defs_h) $(symtab_h) $(frame_h) $(inferior_h) \ $(environ_h) $(value_h) $(target_h) $(gdbthread_h) $(command_h) \ $(gdbcmd_h) $(regcache_h) $(gdb_h) $(gdb_string_h) $(ui_out_h) -linux-thread-db.o: linux-thread-db.c $(defs_h) $(gdb_assert_h) +linux-thread-db.o: linux-thread-db.c $(defs_h) $(gdb_assert_h) \ $(gdb_proc_service_h) $(gdb_thread_db_h) $(bfd_h) $(gdbthread_h) \ $(inferior_h) $(symfile_h) $(objfiles_h) $(target_h) $(regcache_h) \ $(solib_svr4_h)