summaryrefslogtreecommitdiff
path: root/src/thread/pthread_condattr_getpshared.c
blob: 4991e495a7057437577863952f5f7a9cd1a14074 (plain) (blame)
1
2
3
4
5
6
7
#include "pthread_impl.h"

int pthread_condattr_getpshared(const pthread_condattr_t *restrict a, int *restrict pshared)
{
	*pshared = *a>>31;
	return 0;
}