procps/proc/tree.h

16 lines
256 B
C
Raw Normal View History

2002-02-02 04:17:29 +05:30
/* for oldps.c and proc/compare.c */
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;
};