获取当前运行进程总数的命令为:

 ps auxw | wc -l

获取当前运行进程总数的源码如下:

#include <stdio.h>
#include <stdlib.h>
#include <dirent.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>
int main(int argc, char *argv[])
{
    DIR *dp;
    struct dirent *dirp;
    int i, len,count = 0;

    if( (dp = opendir("/proc") )== NULL) {
        fprintf(stderr,"%s file %d line %s",__FILE__,__LINE__, strerror(errno));
        exit(1);
    }
    printf("1\n");
    while((dirp = readdir(dp)) != NULL) {
        if(dirp->d_type == DT_DIR) {
            len = strlen(dirp->d_name);
            for( i = 0; dirp->d_name[i] != 0; ++i) {
                if( ! isdigit(dirp->d_name[i])) {
                    break;
                }
            }
            if( len == i) {
                printf("d_name: %s\n",dirp->d_name);
                ++count;
            }

        }
    }
    printf("当前系统运行进程数 %d\n",count);
    closedir(dp);
    return 0;
}

总结:

大概的编程思想就是统计 /proc 目录下 所有以数字命名的文件夹 个数。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐