mirror of
https://github.com/fluencelabs/musl
synced 2025-06-25 20:51:53 +00:00
for some reason these functions are not shaded by the PS/TPS option in POSIX, so presumably they are mandatory, even though the functionality they offer is optional. for now, provide them in case any programs depend on their existence, but disallow any priority except the default.
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;
|
|
}
|