分类: LINUX
2014-09-06 16:57:49
#include
int sched_setscheduler(pid_t pid, int policy,
const struct sched_param *param);
sched_setscheduler()函数将pid所指定进程的调度策略和调度参数分别设置为param指向的sched_param结构中指定的policy和参数。
sched_param结构中的sched_priority成员的值可以为任何整数,该整数位于policy所指定调度策略的优先级范围内(含边界值)。
policy参数的可能值在头文件中定义。
如果存在pid所描述的进程,将会为进程ID等于pid的进程设置调度策略和调度参数。
如果pid为零,将会为调用进程设置调度策略和调度参数。
如果进程pid含多个进程或轻量进程(即该进程是多进程的),此函数将影响进程中各个子进程。
更改其他进程的调度参数需要有相应的特权。调用进程必须具有相应的特权,或者是具有PRIV_RTSCHED权限的组的成员,猜能成功调用sched_setscheduler()。如果sched_setscheduler()函数成功地将pid所指定调度策略和调度参数分别设置为policy和结构param指定值 ,则该函数调用成功。
例子:更改调用进程以使用最强的FIFO优先级,如下所示:
#include
int main(int argc,char *argv[])
{
struct sched_param param;
int maxpri;
maxpri = sched_get_priority_max(SCHED_FIFO);//????×??ó??
if(maxpri == -1)
{
perror("sched_get_priority_max() failed");
exit(1);
}
param.sched_priority = maxpri;
if (sched_setscheduler(getpid(), SCHED_FIFO, ¶m) == -1) //设置优先级
{
perror("sched_setscheduler() failed");
exit(1);
}
}
获取调度策略
获取调度策略sched_getscheduler()函数声明如下:
/* Retrieve scheduling algorithm for a particular purpose. */
#include
int sched_getscheduler(pid_t pid);
sched_getscheduler()函数返回pid所指定进程的调度策略。
1.如果存在pid所描述的进程,将返回进程ID等于pid的进程的调度策略。
2.如果pid为零,将返回调用进程的调度策略。
3.如果进程pid包含多个进程或轻量进程,此函数只返回进程调度策略和优先级。
目标进程的各个进程或轻量级进程具有其自身的调度策略和优先级,它们可能与当前进程的调度策略和优先级不同。