this change is to get the right tags for C++ ABI matching. it should have no other effects.
8 lines
152 B
C
8 lines
152 B
C
#include "pthread_impl.h"
|
|
|
|
int pthread_barrierattr_setpshared(pthread_barrierattr_t *a, int pshared)
|
|
{
|
|
a->__attr = pshared ? INT_MIN : 0;
|
|
return 0;
|
|
}
|