summaryrefslogtreecommitdiff
path: root/include/alltypes.h.in
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2013-07-22 13:57:02 -0400
committerRich Felker <dalias@aerifal.cx>2013-07-22 13:57:02 -0400
commit0109d950e685f1c5f6cef245a8b1bc47c9b6d94c (patch)
treea4048fa32a9e4337e524e0323cc5cc2e9ce8367d /include/alltypes.h.in
parentc4dd0c98bae8e3583f68ba5b30db491055ab2322 (diff)
downloadmusl-0109d950e685f1c5f6cef245a8b1bc47c9b6d94c.tar.gz
make pthread attribute types structs, even when they just have one field
this change is to get the right tags for C++ ABI matching. it should have no other effects.
Diffstat (limited to 'include/alltypes.h.in')
-rw-r--r--include/alltypes.h.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/alltypes.h.in b/include/alltypes.h.in
index b2454365..cdd42ef1 100644
--- a/include/alltypes.h.in
+++ b/include/alltypes.h.in
@@ -48,9 +48,9 @@ TYPEDEF struct __pthread * pthread_t;
TYPEDEF int pthread_once_t;
TYPEDEF int pthread_key_t;
TYPEDEF int pthread_spinlock_t;
-TYPEDEF unsigned pthread_mutexattr_t;
-TYPEDEF unsigned pthread_condattr_t;
-TYPEDEF unsigned pthread_barrierattr_t;
+TYPEDEF struct { unsigned __attr; } pthread_mutexattr_t;
+TYPEDEF struct { unsigned __attr; } pthread_condattr_t;
+TYPEDEF struct { unsigned __attr; } pthread_barrierattr_t;
TYPEDEF struct { unsigned __attr[2]; } pthread_rwlockattr_t;
TYPEDEF struct _IO_FILE FILE;