de5fbfe29e3debc798de791bd05f05ea1174fd85
[musl] / src / thread / pthread_attr_getschedparam.c
1 #include "pthread_impl.h"
2
3 int pthread_attr_getschedparam(const pthread_attr_t *restrict a, struct sched_param *restrict param)
4 {
5         param->sched_priority = a->_a_prio;
6         return 0;
7 }