From patchwork Thu Jun 12 15:08:53 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adhemerval Zanella Netto X-Patchwork-Id: 1468 Received: (qmail 32350 invoked by alias); 12 Jun 2014 15:09:06 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 32329 invoked by uid 89); 12 Jun 2014 15:09:04 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.0 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: e24smtp05.br.ibm.com Message-ID: <5399C285.6080900@linux.vnet.ibm.com> Date: Thu, 12 Jun 2014 12:08:53 -0300 From: Adhemerval Zanella User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: "GNU C. Library" Subject: [PATCH] PowerPC: Move powerpc code out of nptl/ subdirectory X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 14061215-1798-0000-0000-000002DABEA3 Similar to x86 cleanup, this patch moves the powerpc out of nptl. Checked on ppc64be, ppc32pe. OK to commit? --- * nptl/sysdeps/powerpc/Makefile: Moved ... * sysdeps/powerpc/nptl/Makefile: ... here. * nptl/sysdeps/powerpc/pthread_spin_lock.c: Moved ... * sysdeps/powerpc/nptl/pthread_spin_lock.c: .. here. * nptl/sysdeps/powerpc/pthread_spin_trylock.c: Moved ... * sysdeps/powerpc/nptl/pthread_spin_trylock.c: ... here. * nptl/sysdeps/powerpc/pthreaddef.h: Moved ... * sysdeps/powerpc/nptl/pthreaddef.h: ... here. * nptl/sysdeps/powerpc/tcb-offsets.sym: Moved ... * sysdeps/powerpc/nptl/tcb-offsets.sym: ... here. * nptl/sysdeps/powerpc/tls.h: Moved ... * sysdeps/powerpc/nptl/tls.h: ... here. --- diff --git a/nptl/sysdeps/powerpc/Makefile b/sysdeps/powerpc/nptl/*/Makefile similarity index 100% rename from nptl/sysdeps/powerpc/Makefile rename to sysdeps/powerpc/nptl/*/Makefile diff --git a/nptl/sysdeps/powerpc/pthread_spin_lock.c b/sysdeps/powerpc/nptl/*/pthread_spin_lock.c similarity index 100% rename from nptl/sysdeps/powerpc/pthread_spin_lock.c rename to sysdeps/powerpc/nptl/*/pthread_spin_lock.c diff --git a/nptl/sysdeps/powerpc/pthread_spin_trylock.c b/sysdeps/powerpc/nptl/*/pthread_spin_trylock.c similarity index 100% rename from nptl/sysdeps/powerpc/pthread_spin_trylock.c rename to sysdeps/powerpc/nptl/*/pthread_spin_trylock.c diff --git a/nptl/sysdeps/powerpc/pthreaddef.h b/sysdeps/powerpc/nptl/*/pthreaddef.h similarity index 100% rename from nptl/sysdeps/powerpc/pthreaddef.h rename to sysdeps/powerpc/nptl/*/pthreaddef.h diff --git a/nptl/sysdeps/powerpc/tcb-offsets.sym b/sysdeps/powerpc/nptl/*/tcb-offsets.sym similarity index 100% rename from nptl/sysdeps/powerpc/tcb-offsets.sym rename to sysdeps/powerpc/nptl/*/tcb-offsets.sym diff --git a/nptl/sysdeps/powerpc/tls.h b/sysdeps/powerpc/nptl/*/tls.h similarity index 100% rename from nptl/sysdeps/powerpc/tls.h rename to sysdeps/powerpc/nptl/*/tls.h