2011-03-11 09:51:54 -05:00
|
|
|
#include "pthread_impl.h"
|
|
|
|
|
2012-09-06 22:44:55 -04:00
|
|
|
int pthread_attr_setschedparam(pthread_attr_t *restrict a, const struct sched_param *restrict param)
|
2011-03-11 09:51:54 -05:00
|
|
|
{
|
|
|
|
if (param->sched_priority) return ENOTSUP;
|
|
|
|
return 0;
|
|
|
|
}
|