musl/src/thread/pthread_attr_getschedparam.c

8 lines
180 B
C
Raw Normal View History

#include "pthread_impl.h"
int pthread_attr_getschedparam(const pthread_attr_t *restrict a, struct sched_param *restrict param)
{
param->sched_priority = a->_a_prio;
return 0;
}