您尚未登录。

#1 2015-01-06 10:02:43

jxymax
会员
注册时间: 2015-01-06
帖子: 9

【求助】sched_setscheduler(): Operation not permitted

以下代码运行时,报错(使用root运行也是同样的错误)
sched_setscheduler(): Operation not permitted
希望各位大神们帮忙解决,谢谢。

struct sched_param param;
param.sched_priority = 1;
if (sched_setscheduler(getpid(), SCHED_RR, &param))
    printf("sched_setscheduler(): %s\n", strerror(errno));

离线

页脚