this change is to get the right tags for C++ ABI matching. it should have no other effects.
8 lines
173 B
C
8 lines
173 B
C
#include "pthread_impl.h"
|
|
|
|
int pthread_rwlockattr_setpshared(pthread_rwlockattr_t *a, int pshared)
|
|
{
|
|
if (pshared > 1U) return EINVAL;
|
|
a->__attr[0] = pshared;
|
|
return 0;
|
|
}
|