6

我有一个单线程应用程序。如果我使用下面的代码,我会得到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);
}
4

2 回答 2

3

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

于 2013-01-05T21:04:12.893 回答
0

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

if(pthread_setschedparam(pthread_self(), SCHED_RR, &param) < 0) {
  perror("pthread_setschedparam");
}
于 2013-01-05T21:04:36.047 回答