about summary refs log tree commit diff
path: root/arch/mips64
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2019-10-17 19:35:17 -0400
committerRich Felker <dalias@aerifal.cx>2019-10-17 19:35:17 -0400
commit2d3083e746cf314c16048875e919305b1018bf8b (patch)
tree75c9d485a26165f8d8960a3708083854a9edfcdd /arch/mips64
parent7cc79d10afd43811a486fd5e9fcdf8e45ac599e0 (diff)
downloadmusl-2d3083e746cf314c16048875e919305b1018bf8b.tar.gz
musl-2d3083e746cf314c16048875e919305b1018bf8b.tar.xz
musl-2d3083e746cf314c16048875e919305b1018bf8b.zip
move pthread types out of per-arch alltypes.h
policy has long been that these definitions are purely a function of
whether long/pointer is 32- or 64-bit, and that they are not allowed
to vary per-arch. move the definition to the shared alltypes.h.in
fragment, using integer constant expressions in terms of sizeof to
vary the array dimensions appropriately. I'm not sure whether this is
more or less ugly than using preprocessor conditionals and two sets of
definitions here, but either way is a lot less ugly than repeating the
same thing for every arch.
Diffstat (limited to 'arch/mips64')
-rw-r--r--arch/mips64/bits/alltypes.h.in8
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/mips64/bits/alltypes.h.in b/arch/mips64/bits/alltypes.h.in
index c05cc6fa..ed8384a1 100644
--- a/arch/mips64/bits/alltypes.h.in
+++ b/arch/mips64/bits/alltypes.h.in
@@ -23,11 +23,3 @@ TYPEDEF long time_t;
 TYPEDEF long suseconds_t;
 
 TYPEDEF unsigned nlink_t;
-
-TYPEDEF struct { union { int __i[14]; volatile int __vi[14]; unsigned long __s[7]; } __u; } pthread_attr_t;
-TYPEDEF struct { union { int __i[10]; volatile int __vi[10]; volatile void *volatile __p[5]; } __u; } pthread_mutex_t;
-TYPEDEF struct { union { int __i[10]; volatile int __vi[10]; volatile void *volatile __p[5]; } __u; } mtx_t;
-TYPEDEF struct { union { int __i[12]; volatile int __vi[12]; void *__p[6]; } __u; } pthread_cond_t;
-TYPEDEF struct { union { int __i[12]; volatile int __vi[12]; void *__p[6]; } __u; } cnd_t;
-TYPEDEF struct { union { int __i[14]; volatile int __vi[14]; void *__p[7]; } __u; } pthread_rwlock_t;
-TYPEDEF struct { union { int __i[8]; volatile int __vi[8]; void *__p[4]; } __u; } pthread_barrier_t;