mirror of
https://github.com/fluencelabs/musl
synced 2025-06-03 01:51:51 +00:00
8 lines
153 B
C
8 lines
153 B
C
|
#include "pthread_impl.h"
|
||
|
|
||
|
int pthread_attr_getschedparam(const pthread_attr_t *a, struct sched_param *param)
|
||
|
{
|
||
|
param->sched_priority = 0;
|
||
|
return 0;
|
||
|
}
|