我有一个单线程应用程序。如果我使用下面的代码,我会得到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);
}
答案 0 :(得分:3)
错误可能是由实时优先级设置的限制(ulimit -r
检查,ulimit -r 99
允许1-99优先级)引起的。从pthread_setschedparam
开始成功:如果编译时没有-pthread
选项,则此函数只是一个存根,就像其他一些pthread函数一样。使用-pthread
选项,结果应该相同(strace
表示使用相同的系统调用)。
答案 1 :(得分:0)
您缺少一些基本的错误处理。你需要一些<在那里。试试这个:
if(pthread_setschedparam(pthread_self(), SCHED_RR, ¶m) < 0) {
perror("pthread_setschedparam");
}