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