在linux中更改线程优先级和调度程序

时间:2013-01-05 20:50:48

标签: c++ c linux pthreads

我有一个单线程应用程序。如果我使用下面的代码,我会得到sched_setscheduler(): Operation not permitted

struct sched_param param;
param.sched_priority = 1;
if (sched_setscheduler(getpid(), SCHED_RR, &param))
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, &param);
    param.sched_priority = tPriority;
    if(pthread_setschedparam(pthread_self(), SCHED_RR, &param))
            printf("error while setting thread priority to %d", tPriority);
}

2 个答案:

答案 0 :(得分:3)

错误可能是由实时优先级设置的限制(ulimit -r检查,ulimit -r 99允许1-99优先级)引起的。从pthread_setschedparam开始成功:如果编译时没有-pthread选项,则此函数只是一个存根,就像其他一些pthread函数一样。使用-pthread选项,结果应该相同(strace表示使用相同的系统调用)。

答案 1 :(得分:0)

您缺少一些基本的错误处理。你需要一些<在那里。试试这个:

if(pthread_setschedparam(pthread_self(), SCHED_RR, &param) < 0) {
  perror("pthread_setschedparam");
}