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

int pthread_attr_setinheritsched(pthread_attr_t *a, int inherit)
{
	if (inherit > 1U) return ENOTSUP;
	a->_a_sched = inherit;
	return 0;
}