1e21e78b
40bae2d3
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 EINVAL; a->_a_sched = inherit; return 0; }