From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12564 invoked by alias); 23 Feb 2010 15:59:20 -0000 Received: (qmail 12538 invoked by uid 22791); 23 Feb 2010 15:59:19 -0000 X-SWARE-Spam-Status: No, hits=-7.0 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 23 Feb 2010 15:59:15 +0000 Received: from int-mx08.intmail.prod.int.phx2.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o1NFxDiQ016779 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 23 Feb 2010 10:59:13 -0500 Received: from redhat.com (vpn-8-104.rdu.redhat.com [10.11.8.104]) by int-mx08.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o1NFxAVq002718 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Tue, 23 Feb 2010 10:59:12 -0500 Date: Tue, 23 Feb 2010 16:48:00 -0000 From: Aldy Hernandez To: gcc-patches@gcc.gnu.org, rth@redhat.com Subject: [trans-mem] rename libitm/serial.cc to libitm/method-serial.cc Message-ID: <20100223155906.GA10104@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-08-17) Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2010-02/txt/msg00932.txt.bz2 I'm renaming serial.cc to method-serial.cc to be consistent with the other dispatch variants. Committed as semi obvious. * Makefile.am: Rename serial.cc to method-serial.cc. * libitm_i.h (struct gtm_transaction): Update comment on serialirr_mode. * Makefile.in: Regenerate with automake 1.11.1. * testsuite/Makefile.in: Same. * aclocal.m4: Regenerate with aclocal 1.11.1. * method-serial.cc: Rename from serial.cc. Index: Makefile.am =================================================================== --- Makefile.am (revision 156783) +++ Makefile.am (working copy) @@ -39,8 +39,8 @@ libitm_la_LDFLAGS = $(libitm_version_inf libitm_la_SOURCES = \ aatree.cc alloc.cc alloc_c.cc alloc_cpp.cc barrier.cc beginend.cc \ clone.cc cacheline.cc cachepage.cc eh_cpp.cc local.cc memcpy.cc \ - memset.cc query.cc retry.cc rwlock.cc serial.cc useraction.cc util.cc \ - sjlj.S method-readonly.cc method-wbetl.cc + memset.cc query.cc retry.cc rwlock.cc useraction.cc util.cc \ + sjlj.S method-serial.cc method-readonly.cc method-wbetl.cc if ARCH_X86 libitm_la_SOURCES += x86_sse.cc x86_avx.cc Index: libitm_i.h =================================================================== --- libitm_i.h (revision 156955) +++ libitm_i.h (working copy) @@ -244,7 +244,7 @@ struct gtm_transaction // In retry.cc void decide_retry_strategy (gtm_restart_reason); - // In serial.cc + // In method-serial.cc void serialirr_mode (); // In useraction.cc