blob: c91d8f83cc749acb79b5d9259f97432f54805175 [file] [log] [blame]
Rich Felker1e21e782012-11-11 15:38:04 -05001#include "pthread_impl.h"
2
3int pthread_attr_setinheritsched(pthread_attr_t *a, int inherit)
4{
5 if (inherit > 1U) return EINVAL;
6 a->_a_sched = inherit;
7 return 0;
8}