[1/6] Consolidate pthreadtype.h placement

Message ID 1490103612-9401-2-git-send-email-adhemerval.zanella@linaro.org
State Dropped
Headers

Commit Message

Adhemerval Zanella March 21, 2017, 1:40 p.m. UTC
  This patch moves all arch specific pthreadtypes.h to a similar path
for all architectures (sysdeps/unix/sysv/<arch>/bits).  No functional
or build change is expected.  The idea is mainly to organize the
header placement for all architectures.

Checked with a build for all major ABI (aarch64-linux-gnu, alpha-linux-gnu,
arm-linux-gnueabi, hppa-linux-gnu, i386-linux-gnu, ia64-linux-gnu,
m68k-linux-gnu, microblaze-linux-gnu [1], mips{64}-linux-gnu, nios2-linux-gnu,
powerpc{64le}-linux-gnu, s390{x}-linux-gnu, sparc{64}-linux-gnu,
tile{pro,gx}-linux-gnu, and x86_64-linux-gnu).
---
 ChangeLog                                                      | 10 ++++++++++
 .../{unix/sysv/linux/alpha => alpha/nptl}/bits/pthreadtypes.h  |  0
 .../sysv/linux/powerpc => powerpc/nptl}/bits/pthreadtypes.h    |  0
 sysdeps/unix/sysv/linux/x86/Implies                            |  1 +
 sysdeps/x86/{ => nptl}/bits/pthreadtypes.h                     |  0
 5 files changed, 11 insertions(+)
 rename sysdeps/{unix/sysv/linux/alpha => alpha/nptl}/bits/pthreadtypes.h (100%)
 rename sysdeps/{unix/sysv/linux/powerpc => powerpc/nptl}/bits/pthreadtypes.h (100%)
 create mode 100644 sysdeps/unix/sysv/linux/x86/Implies
 rename sysdeps/x86/{ => nptl}/bits/pthreadtypes.h (100%)
  

Comments

Andreas Schwab March 21, 2017, 1:48 p.m. UTC | #1
On Mär 21 2017, Adhemerval Zanella <adhemerval.zanella@linaro.org> wrote:

> This patch moves all arch specific pthreadtypes.h to a similar path
> for all architectures (sysdeps/unix/sysv/<arch>/bits).

The description doesn't agree with the patch.

Andreas.
  
Adhemerval Zanella March 21, 2017, 3:07 p.m. UTC | #2
On 21/03/2017 10:48, Andreas Schwab wrote:
> On Mär 21 2017, Adhemerval Zanella <adhemerval.zanella@linaro.org> wrote:
> 
>> This patch moves all arch specific pthreadtypes.h to a similar path
>> for all architectures (sysdeps/unix/sysv/<arch>/bits).
> 
> The description doesn't agree with the patch.
> 
> Andreas.
> 

Indeed, my confusion here.  It in fact changes from
sysdeps/{unix/sysv/linux/<arch> => <arch>/nptl}/bits/.  I will
correctly it locally, thanks.
  

Patch

diff --git a/sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h b/sysdeps/alpha/nptl/bits/pthreadtypes.h
similarity index 100%
rename from sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h
rename to sysdeps/alpha/nptl/bits/pthreadtypes.h
diff --git a/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h b/sysdeps/powerpc/nptl/bits/pthreadtypes.h
similarity index 100%
rename from sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
rename to sysdeps/powerpc/nptl/bits/pthreadtypes.h
diff --git a/sysdeps/unix/sysv/linux/x86/Implies b/sysdeps/unix/sysv/linux/x86/Implies
new file mode 100644
index 0000000..e454b28
--- /dev/null
+++ b/sysdeps/unix/sysv/linux/x86/Implies
@@ -0,0 +1 @@ 
+x86/nptl
diff --git a/sysdeps/x86/bits/pthreadtypes.h b/sysdeps/x86/nptl/bits/pthreadtypes.h
similarity index 100%
rename from sysdeps/x86/bits/pthreadtypes.h
rename to sysdeps/x86/nptl/bits/pthreadtypes.h