使用procf知道进程状态/ /状态(Knowing the process status u

2019-07-03 23:34发布

我工作在Solaris上。

我知道,如果有一个进程在运行,有一个叫做文件/proc/<PID>/status ,其中<PID>是进程ID,它包含一个名为场state

举个例子,我用我的外壳工艺:

> ps
   PID TTY         TIME CMD
 18671             0:01 tcsh

其进程ID是18671。

我写了一个简单的C程序中提取的信息:

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/procfs.h>
#include <sys/fcntl.h>

static void get_status (pid_t pid)
{
  char procpath[100];
  char buf[100];
  int pfd;
  char State[100];
  char Name[100];
  prstatus_t * pms;
  FILE *proc;


    sprintf(procpath, "/proc/%d/status", pid);

    proc = fopen(procpath,"r");
    if (proc) {
        printf("Open Successful\n");
        fgets(buf,256,proc); sscanf(buf,"Name:\t%s",Name);
        fgets(buf,256,proc); sscanf(buf,"State:\t%c",State);
       }
    printf("%s",Name);
    printf("%s",State);
}

int main(int argc, char **argv)
{
    get_status(18671);

}

它不产生任何输出:

> ./a.out
Open Successful
> 

对于PROCFS在线材料说,我们可以简单地做一个猫proc/<pid>/status ,检查进程的状态。

但对我来说这是一个二进制文件 。 我从来没有见过任何地方提到的是二进制的。

有没有一种方法,我可以用一个简单的C程序来得到当前进程的状态?

A C ++溶液也是可以接受的。

Answer 1:

这是你应该读出的/ proc /的结构pid /状态:

typedef struct pstatus {
        int     pr_flags;       /* flags (see below) */
        int     pr_nlwp;        /* number of active lwps in the process */
        pid_t   pr_pid;         /* process id */
        pid_t   pr_ppid;        /* parent process id */
        pid_t   pr_pgid;        /* process group id */
        pid_t   pr_sid;         /* session id */
        id_t    pr_aslwpid;     /* historical; now always zero */
        id_t    pr_agentid;     /* lwp id of the /proc agent lwp, if any */
        sigset_t pr_sigpend;    /* set of process pending signals */
        uintptr_t pr_brkbase;   /* address of the process heap */
        size_t  pr_brksize;     /* size of the process heap, in bytes */
        uintptr_t pr_stkbase;   /* address of the process stack */
        size_t  pr_stksize;     /* size of the process stack, in bytes */
        timestruc_t pr_utime;   /* process user cpu time */
        timestruc_t pr_stime;   /* process system cpu time */
        timestruc_t pr_cutime;  /* sum of children's user times */
        timestruc_t pr_cstime;  /* sum of children's system times */
        sigset_t pr_sigtrace;   /* set of traced signals */
        fltset_t pr_flttrace;   /* set of traced faults */
        sysset_t pr_sysentry;   /* set of system calls traced on entry */
        sysset_t pr_sysexit;    /* set of system calls traced on exit */
        char    pr_dmodel;      /* data model of the process (see below) */
        char    pr_pad[3];
        taskid_t pr_taskid;     /* task id */
        projid_t pr_projid;     /* project id */
        int     pr_nzomb;       /* number of zombie lwps in the process */
        zoneid_t pr_zoneid;     /* zone id */
        int     pr_filler[15];  /* reserved for future use */
        lwpstatus_t pr_lwp;     /* status of the representative lwp */
} pstatus_t;

注意它的头文件procfs.h定义。 声明一个pstatus_t变量和读取sizeof(pstatus_t)字节到该变量。

提示:也无法通过ls ,你也可以用/proc/self/psinfo阅读自我过程中psinfo。



文章来源: Knowing the process status using procf//status