remove no-longer-needed unblocking of signals in pthread_create
[musl] / src / thread / pthread_attr_getschedparam.c
1 #include "pthread_impl.h"
2
3 int pthread_attr_getschedparam(const pthread_attr_t *a, struct sched_param *param)
4 {
5         param->sched_priority = 0;
6         return 0;
7 }