| 1 | #include "pthread_impl.h" |
| 2 | #include "syscall.h" |
| 3 | |
| 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 | } |