我编写了一个代码来提高我的 openSuSE 12.2 系统上进程的优先级。
#include <stdio.h>
#include <sched.h>
#include <unistd.h>
int printUsage(void)
{
printf("\nUsage:\nboostprio [pid] [priority: (0-99)] [policy: FF:RR:OTH]\n");
exit (1);
}
int main (int argc , char *argv[])
{
int pid = -1 ;
int pri;
struct sched_param param;
if(argc != 4 ){
printf("\nArgument miss match !!");
printUsage();
return -1;
}
if((strcmp(argv[1],"-h" ) == 0) || (strcmp(argv[1],"--help") == 0))
printUsage();
pid = atoi(argv[1]);
if(pid <= 0){
printf("\nPid is not correct!!\n");
return -1;
}
pri = atoi(argv[2]);
if((pri > 99) || (pri < 0)){
printf("\nPriority value is not valid !!\n");
return -1;
}
param.sched_priority = pri;
if(strcmp(argv[3],"FF") == 0)
sched_setscheduler((pid_t)pid, SCHED_FIFO, ¶m);
else if(strcmp(argv[3],"RR") == 0)
sched_setscheduler((pid_t)pid, SCHED_RR, ¶m);
else if(strcmp(argv[3],"OTH") == 0)
sched_setscheduler((pid_t)pid, SCHED_OTHER, ¶m);
else{
printf("\nInvalid scheduling policy type!!\n");
printUsage();
}
return 0;
}
然后我写了一个bash脚本shell.sh调用boostprio二进制文件
#!/bin/sh
PID=`ps -ef | grep "sshd -p 911" |head -1 | awk '{print $2}'`
/sbin/boostprio $PID 95 RR
if [ "$?" == 0 ]; then
logger -t "Emergency shell is activated."
else
logger -t "Emergency shell is NOT activated !!"
fi
虽然新的 sshd -p 911 在启动时启动,但 boostprio exe 不起作用并且不会提高 sshd 的优先级。它仍然是普通的优先级。这是在腻子上看到的图像文件
此外,如果我在命令提示符而不是 boot.local 上手动调用 shell.sh 脚本,boostprio 可以正常工作!
这里是printscr
因此,我的 /usr/sbin/boostprio exe 在从 /etc/init.d/boot.local 调用时不起作用
此外,我在 boostprio.c 中打印了 sched_setscheduler() func 并返回 255 失败,我认为这是实际问题。但我不知道如何弄清楚?