blob: b305f2fae46a1a0d11c58a54fad83eb681681631 [file] [log] [blame]
#include "pthread_impl.h"
int pthread_attr_setschedparam(pthread_attr_t *a, const struct sched_param *param)
{
if (param->sched_priority) return ENOTSUP;
return 0;
}