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

int pthread_attr_getscope(const pthread_attr_t *restrict a, int *restrict scope)
{
	*scope = PTHREAD_SCOPE_SYSTEM;
	return 0;
}