更改Linux中的线程优先级和调度程序
Posted
技术标签:
【中文标题】更改Linux中的线程优先级和调度程序【英文标题】:changing thread priority and scheduler in linux 【发布时间】:2013-01-05 20:50:47 【问题描述】:我有一个单线程应用程序。如果我使用下面的代码,我会得到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);
【问题讨论】:
【参考方案1】:该错误可能是由对实时优先级设置的限制引起的(ulimit -r
检查,ulimit -r 99
允许 1-99 个优先级)。在pthread_setschedparam
成功时:如果你编译时没有-pthread
选项,这个函数只是一个存根,就像其他一些pthread 函数一样。使用-pthread
选项,结果应该是相同的(strace
表明使用了相同的系统调用)。
【讨论】:
1.我确实将应用程序与-lpthread 链接。 2. ulimit -r 显示 0。那么它如何解释我能够调用值为 80 的函数 assignRRPriority。为什么不会出错?-lpthread
是不够的,-pthread
是必需的(对于 both 编译 和 链接)。那么assignRRPriority 就会失败。【参考方案2】:
您缺少一些基本的错误处理。你需要一些
if(pthread_setschedparam(pthread_self(), SCHED_RR, ¶m) < 0)
perror("pthread_setschedparam");
【讨论】:
以上是关于更改Linux中的线程优先级和调度程序的主要内容,如果未能解决你的问题,请参考以下文章