From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13035 invoked by alias); 25 Aug 2004 23:11:21 -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 13023 invoked from network); 25 Aug 2004 23:11:19 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 25 Aug 2004 23:11:19 -0000 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx1.redhat.com (8.12.10/8.12.10) with ESMTP id i7PNBDS0014862 for ; Wed, 25 Aug 2004 19:11:18 -0400 Received: from potter.sfbay.redhat.com (potter.sfbay.redhat.com [172.16.27.15]) by int-mx2.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i7PNB9707046; Wed, 25 Aug 2004 19:11:09 -0400 Received: from redhat.com (dhcp-172-16-25-160.sfbay.redhat.com [172.16.25.160]) by potter.sfbay.redhat.com (8.11.6/8.11.6) with ESMTP id i7PNB8V19261; Wed, 25 Aug 2004 16:11:08 -0700 Message-ID: <412D1C8C.5080809@redhat.com> Date: Wed, 25 Aug 2004 23:11:00 -0000 From: Michael Snyder Organization: Red Hat, Inc. User-Agent: Mozilla/5.0 (X11; U; Linux i686; es-ES; rv:1.4.2) Gecko/20040301 MIME-Version: 1.0 To: Michael Chastain CC: gdb-patches@sources.redhat.com Subject: Re: [PING/rfa/testsuite/threads] schedlock.c: add copyright notice References: <412B6AD9.nailILO183Z9X@mindspring.com> In-Reply-To: <412B6AD9.nailILO183Z9X@mindspring.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2004-08/txt/msg00703.txt.bz2 Michael Chastain wrote: > Previously submitted: > > 2004-07-31 > 2004-08-08 > 2004-08-16 > > This patch adds a copyright notice to schedlock.c. It doesn't touch > anything else in schedlock.c, but naturally I'm doing this because I > want to patch schedlock.c next (so that it compiles with gcc HEAD). > > Daniel Jacobowitz created schedlock.c in 2002, and the file was edited > in 2003 but not in 2004. Following a previous discussion with Andrew > Cagney and Dan Berlin, I'm not including 2004 in the list of copyright > years. > > Date sources: ChangeLog and the cvs log. > > Testing: I ran schedlock.exp 32 times before and after on native > i686-pc-linux-gnu to make sure no absolute line numbers got hosed. > > Okay to commit? > > Michael C Can't see any reason not to... > > === > > 2004-07-31 Michael Chastain > > * gdb.threads/schedlock.c: Add copyright notice. > > Index: gdb.threads/schedlock.c > =================================================================== > RCS file: /cvs/src/src/gdb/testsuite/gdb.threads/schedlock.c,v > retrieving revision 1.3 > diff -c -3 -p -r1.3 schedlock.c > *** gdb.threads/schedlock.c 15 Apr 2003 02:23:11 -0000 1.3 > --- gdb.threads/schedlock.c 1 Aug 2004 01:26:43 -0000 > *************** > *** 1,3 **** > --- 1,22 ---- > + /* This testcase is part of GDB, the GNU debugger. > + > + Copyright 2002, 2003 Free Software Foundation, Inc. > + > + This program is free software; you can redistribute it and/or modify > + it under the terms of the GNU General Public License as published by > + the Free Software Foundation; either version 2 of the License, or > + (at your option) any later version. > + > + This program is distributed in the hope that it will be useful, > + but WITHOUT ANY WARRANTY; without even the implied warranty of > + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > + GNU General Public License for more details. > + > + You should have received a copy of the GNU General Public License > + along with this program; if not, write to the Free Software > + Foundation, Inc., 59 Temple Place - Suite 330, > + Boston, MA 02111-1307, USA. */ > + > #include > #include > #include >