addpidvalueto/proc/"pid"/stat
创始人
2024-07-26 23:00:53
0

在 Linux 系统中,/proc 目录下存放了系统内核运行时产生的大量进程和系统信息,其中 /proc//stat 文件存放了关于对应进程 的各种统计信息。要将值添加到该文件中,可以使用下列代码:

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>

 //向 /proc/<pid>/stat 文件中添加值的函数
void AddValueToProcStat(int pid, int value)
{
    char stat_file[50];
    sprintf(stat_file, "/proc/%d/stat", pid);  //定义 /proc/<pid>/stat 文件路径

    int fd = open(stat_file, O_RDWR);  //以读写方式打开文件
    if (fd == -1) {
        printf("open file failed.\n");
        return;
    }

    char buf[1024];
    int len = read(fd, buf, sizeof(buf));  //读取文件内容
    if (len <= 0) {
        printf("read file failed.\n");
        close(fd);
        return;
    }

    char *ptr = strstr(buf, ") ");  //找到文件内容中的') ”位置
    if (ptr == NULL) {
        printf("parse file failed.\n");
        close(fd);
        return;
    }

    ptr += 2;  //指针后移两个字节,指向统计信息的起始位置

    //将值转换成字符串,并插入到统计信息中
    char str[50];
    snprintf(str, sizeof(str), "%d ", value);
    memmove(ptr + strlen(str), ptr, len - (ptr - buf));
    memcpy(ptr, str, strlen(str));

    lseek(fd, 0, SEEK_SET);
    write(fd, buf, strlen(buf));  //将修改后的文件内容写入文件中

    close(fd);
}

该函数以进程号 pid 和要添加的值 value 为参数,首先根据进程号构造 /proc//stat 文件路径,然后以读写方式打开文件并读取文件内容。其中,文件内容的前面一段信息是有格式的,格式为:

pid (comm) state ppid ...

其中,pid

相关内容

热门资讯

Android Recycle... 要在Android RecyclerView中实现滑动卡片效果,可以按照以下步骤进行操作:首先,在项...
安装apache-beam==... 出现此错误可能是因为用户的Python版本太低,而apache-beam==2.34.0需要更高的P...
Android - 无法确定任... 这个错误通常发生在Android项目中,表示编译Debug版本的Java代码时出现了依赖关系问题。下...
Android - NDK 预... 在Android NDK的构建过程中,LOCAL_SRC_FILES只能包含一个项目。如果需要在ND...
Akka生成Actor问题 在Akka框架中,可以使用ActorSystem对象生成Actor。但是,当我们在Actor类中尝试...
Agora-RTC-React... 出现这个错误原因是因为在 React 组件中使用,import AgoraRTC from “ago...
Alertmanager在pr... 首先,在Prometheus配置文件中,确保Alertmanager URL已正确配置。例如:ale...
Aksnginxdomainb... 在AKS集群中,可以使用Nginx代理服务器实现根据域名进行路由。以下是具体步骤:部署Nginx i...
AddSingleton在.N... 在C#中创建Singleton对象通常是通过私有构造函数和静态属性来实现,例如:public cla...
Alertmanager中的基... Alertmanager中可以使用repeat_interval选项指定在一个告警重复发送前必须等待...