Initial revision

This commit is contained in:
Martin Baulig
1998-07-18 16:15:56 +00:00
parent 0e086aef25
commit 5e9d34c91a
23 changed files with 2280 additions and 0 deletions

14
libproc/tree.h Normal file
View File

@@ -0,0 +1,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;
};