summaryrefslogtreecommitdiff
path: root/src/thread/pthread_condattr_setpshared.c
blob: bece8a269c9b8ccc62498e0d3378946358b1cd5e (plain) (blame)
1
2
3
4
5
6
7
8
9
#include "pthread_impl.h"

int pthread_condattr_setpshared(pthread_condattr_t *a, int pshared)
{
	if (pshared > 1U) return EINVAL;
	a->__attr &= 0x7fffffff;
	a->__attr |= pshared<<31;
	return 0;
}