我有一个单线程应用程序。如果我使用下面的代码,我会得到sched_setscheduler(): Operation not permitted
.
struct sched_param param;
param.sched_priority = 1;
if (sched_setscheduler(getpid(), SCHED_RR, ¶m))
printf(stderr, "sched_setscheduler(): %s\n", strerror(errno));
但是,如果我使用如下的 pthread api,我不会收到错误消息。对于单线程应用程序,两者之间有什么区别,下面的函数真的改变了调度程序和优先级,还是我错过了一些错误处理?
void assignRRPriority(int tPriority)
{
int policy;
struct sched_param param;
pthread_getschedparam(pthread_self(), &policy, ¶m);
param.sched_priority = tPriority;
if(pthread_setschedparam(pthread_self(), SCHED_RR, ¶m))
printf("error while setting thread priority to %d", tPriority);
}