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.
7 lines
169 B
C
7 lines
169 B
C
#include "pthread_impl.h"
|
|
|
|
int pthread_attr_setschedparam(pthread_attr_t *a, const struct sched_param *param)
|
|
{
|
|
if (param->sched_priority) return ENOTSUP;
|
|
return 0;
|
|
}
|