xref: /aosp_15_r20/external/musl/src/thread/pthread_attr_setinheritsched.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include "pthread_impl.h"
2 #include "syscall.h"
3 
pthread_attr_setinheritsched(pthread_attr_t * a,int inherit)4 int pthread_attr_setinheritsched(pthread_attr_t *a, int inherit)
5 {
6 	if (inherit > 1U) return EINVAL;
7 	a->_a_sched = inherit;
8 	return 0;
9 }
10