mirror of
https://github.com/fluencelabs/musl
synced 2025-06-24 04:01:56 +00:00
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.
This commit is contained 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;
|
||||
|
Reference in New Issue
Block a user