unix中如何申请进程调度的优先级

一、前言

unix系统中,进程的调度是由内核决定的。在一个系统中,进程的优先级越高,表示其在一定时间中占用cpu的时间越久。本文将介绍unix系统如何修改以及获取进程的优先级。

二、nice值

nice值是unix系统中用于表征进程优先级的一个参数。需要注意的是,普通的进程只能通过nice值来降低进程的优先级,只有特权进程能够提升进程的优先级。

nice值越低,其优先级越高。

2.1 nice函数

nice函数能够设置以及获取进程的nice值,其函数原型如下:

#include <unistd.h> int nice(int inc);

参数: inc:表示需要增加的nice值。可以是负值或正值,但只能在nice值范围内才能有效调整

返回值:

如果成功,返回调整后的nice值。如果失败,返回-1

参考代码如下:

c 复制代码
/*************************************************************************
        > File Name: nice_test.c
        > Author: conbiao
        > Created Time: 2024年10月09日 星期三 10时04分38秒
 ************************************************************************/

/***********************************************************************
 *                             HEADER
 **********************************************************************/
#include<stdio.h>
#include<unistd.h>

/***********************************************************************
 *                              MACRO
 **********************************************************************/


/***********************************************************************
 *                          GLOBAL VARIABLE
 **********************************************************************/


/***********************************************************************
 *                       FUNCTION DESCRIPTION
 **********************************************************************/
int get_nice(void);
int set_nice(int ni);

/***********************************************************************
* FUNCTION NAME: get_nice()
 ***********************************************************************
*
* Summary:
*   get process's nice
*
* Params:
*   void
*
* Return:
*   if success,return nice
*   if fail,return -1
*
***********************************************************************/
int get_nice(void)
{
    int ret = 0;

    printf("%s: start!\n",__func__);

    ret = nice(0);
    if(ret == -1)
    {
        printf("%s: get nice fail!\n",__func__);
    }

    printf("%s: end!\n",__func__);

    return ret;
}


/***********************************************************************
* FUNCTION NAME: set_nice()
 ***********************************************************************
*
* Summary:
*   set process's nice
*
* Params:
*   void
*
* Return:
*   if success,return nice
*   if fail,return -1
*
***********************************************************************/
int set_nice(int ni)
{
    int ret = 0;

    printf("%s: start!\n",__func__);

    ret = nice(ni);

    if(ret == -1)
    {
        printf("%s: set nice failed!\n",__func__);
    }

    printf("%s: end!\n",__func__);

    return ret;
}


/***********************************************************************
 *                                MAIN
 **********************************************************************/
int main(int argc, char *argv[])
{
    int ret = 0;

    printf("%s:start!\n",__func__);

    ret = get_nice();

    if(ret != -1)
    {
        printf("%s: nice is %d\n",__func__,ret);
    }

    ret = set_nice(2);
    if(ret != -1)
    {
        printf("%s: new nice is %d\n",__func__,get_nice());
    }


    return ret;
}

运行结果如下所示:

(2.1-1)

2.2 getpriority函数

getpriority函数能够获取进程的调度优先级,也能获取进程组的调度优先级,其函数原型如下:

#include <sys/resource.h>

int getpriority(int which, id_t who);

参数:

  • which:表示要查询的进程类型,可以是以下值之一:
    • PRIO_PROCESS:查询指定进程的优先级。
    • PRIO_PGRP:查询指定进程组的优先级。
    • PRIO_USER:查询指定用户所有进程的优先级。
  • who:与 which 参数一起使用,指定要查询的进程、进程组或用户的 ID。
    • 如果 which 为 PRIO_PROCESS,则 who 是进程的 PID;
    • 如果 which 为 PRIO_PGRP,则 who 是进程组的 ID;
    • 如果 which 为 PRIO_USER,则 who 是用户的 UID。 返回值:
  • 如果成功,返回相应进程或用户的优先级值。
  • 如果失败,返回 -1,并设置 errno 以指示错误原因。

参考代码如下:

c 复制代码
/*************************************************************************
        > File Name: priority_test.c
        > Author: conbiao
        > Created Time: 2024年10月09日 星期三 10时47分06秒
 ************************************************************************/

/***********************************************************************
 *                             HEADER
 **********************************************************************/
#include <stdio.h>
#include <sys/resource.h>
#include <sys/types.h>
#include <unistd.h>
/***********************************************************************
 *                              MACRO
 **********************************************************************/


/***********************************************************************
 *                          GLOBAL VARIABLE
 **********************************************************************/


/***********************************************************************
 *                       FUNCTION DESCRIPTION
 **********************************************************************/
int get_nice(void);


/***********************************************************************
* FUNCTION NAME: get_nice()
 ***********************************************************************
*
* Summary:
*      get nice
* Params:
*      void
* Return:
*      if success,return nice
*      if fail,return -1
*
***********************************************************************/
int get_nice(void)
{
    pid_t pid = getpid();

    int priority = getpriority(PRIO_PROCESS, pid);

    if(priority != -1)
    {
        return priority;
    }

    return -1;
}


/***********************************************************************
 *                                MAIN
 **********************************************************************/
int main(int argc, char *argv[])
{
    int ret = 0;

    printf("%s: nice is %d\n",__func__,get_nice());

    return ret;
}

运行结果如下:

(2.2-1)

参考资料:

《UNIX环境高级编程(第3版) (史蒂文斯 (W.Richard Stevens) 拉戈 (Stephen A.Rago))(Z-Library)》

相关推荐
小屁不止是运维9 小时前
麒麟操作系统服务架构保姆级教程(二)ssh远程连接
linux·运维·服务器·学习·架构·ssh
黑客K-ing11 小时前
网络安全防范
linux·服务器·web安全
这题怎么做?!?11 小时前
ARP协议及其具体过程
运维·服务器·网络
卡卡大怪兽11 小时前
fastAPI接口的请求与响应——基础
服务器·网络·fastapi
路飞雪吖~11 小时前
【Linux】进程控制
linux·运维·服务器
昌sit!11 小时前
监控IP频繁登录服务器脚本
服务器·网络·tcp/ip
北京华人开创公司11 小时前
京准电钟:电厂自控NTP时间同步服务器技术方案
运维·服务器·卫星时钟服务器·ntp时间服务器·时间同步服务器·网络时间服务器·北斗授时服务器
大梦百万秋12 小时前
C++中的虚拟化:通过虚拟机管理模拟服务器虚拟化
服务器·开发语言·c++
张声录112 小时前
【ETCD】ETCD 的一致性读(Linearizable Read)流程解析
服务器·数据库·etcd
余生H13 小时前
前端的Python应用指南(一):快速构建 Web 服务器 - Flask vs Node.js 对比
服务器·前端·python