summaryrefslogblamecommitdiff
path: root/src/thread/pthread_condattr_setpshared.c
blob: c0cc1ef9f90dc4bf27e075c0207590314f75a209 (plain) (tree)
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 &= 0x7fffffff;
	*a |= pshared<<31;
	return 0;
}