musl-tcc/src/thread/pthread_condattr_setpshared.c

10 lines
207 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include "pthread_impl.h"
int pthread_condattr_setpshared(pthread_condattr_t *a, int pshared)
{
if (pshared > 1U) return EINVAL;
a->__attr &= 0x7fffffff;
a->__attr |= (unsigned)pshared<<31;
return 0;
}