diff options
author | Rich Felker <dalias@aerifal.cx> | 2013-07-22 13:57:02 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2013-07-22 13:57:02 -0400 |
commit | 0109d950e685f1c5f6cef245a8b1bc47c9b6d94c (patch) | |
tree | a4048fa32a9e4337e524e0323cc5cc2e9ce8367d /src/thread/pthread_mutexattr_setrobust.c | |
parent | c4dd0c98bae8e3583f68ba5b30db491055ab2322 (diff) | |
download | musl-0109d950e685f1c5f6cef245a8b1bc47c9b6d94c.tar.gz musl-0109d950e685f1c5f6cef245a8b1bc47c9b6d94c.tar.bz2 musl-0109d950e685f1c5f6cef245a8b1bc47c9b6d94c.tar.xz musl-0109d950e685f1c5f6cef245a8b1bc47c9b6d94c.zip |
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 'src/thread/pthread_mutexattr_setrobust.c')
-rw-r--r-- | src/thread/pthread_mutexattr_setrobust.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/thread/pthread_mutexattr_setrobust.c b/src/thread/pthread_mutexattr_setrobust.c index 4a296ba1..dcfa4cf1 100644 --- a/src/thread/pthread_mutexattr_setrobust.c +++ b/src/thread/pthread_mutexattr_setrobust.c @@ -3,7 +3,7 @@ int pthread_mutexattr_setrobust(pthread_mutexattr_t *a, int robust) { if (robust > 1U) return EINVAL; - *a &= ~4; - *a |= robust*4; + a->__attr &= ~4; + a->__attr |= robust*4; return 0; } |