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

前端之家收集整理的这篇文章主要介绍了c – 在linux中更改线程优先级和调度程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个单线程应用程序.如果我使用下面的代码,我得到sched_setscheduler():不允许操作
.

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(),&param))
            printf("error while setting thread priority to %d",tPriority);
}
最佳答案
错误可能是由对实时优先级设置的限制(ulimit -r检查,ulimit -r 99允许1-99优先级)引起的.从pthread_setschedparam开始成功:如果你在没有-pthread选项的情况下编译,这个函数只是一个存根,就像其他一些pthread函数一样.使用-pthread选项,结果应该相同(strace显示使用相同的系统调用).
原文链接:https://www.f2er.com/linux/440917.html

猜你在找的Linux相关文章