File: tree.h

package info (click to toggle)
grmonitor 0.53-6
  • links: PTS
  • area: main
  • in suites: slink
  • size: 280 kB
  • ctags: 418
  • sloc: ansic: 2,660; makefile: 130
file content (14 lines) | stat: -rw-r--r-- 219 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
struct tree_node {
    proc_t *proc;
    pid_t pid;
    pid_t ppid;
    char *line;
    char *cmd;
    char **cmdline;
    char **environ;
    int children;
    int maxchildren;
    int *child;
    int have_parent;
};