File: tree.h

package info (click to toggle)
ncps 0.510-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 172 kB
  • ctags: 133
  • sloc: ansic: 1,838; makefile: 63
file content (28 lines) | stat: -rw-r--r-- 450 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * This file is part of ncps.
*/

void make_tree(killer_t *chow);
void make_branch(procinfo_t *pidlist, tree *branch, int count);
pid_t find_parent(pid_t pid, procinfo_t *pidlist, int count);
void  find_children(tree *branch, procinfo_t *pidlist, int count);
void free_branch(tree *branch);
void draw_strings(procinfo_t *trunk, int count);
void graph_branch(tree *branch, killer_t *chow, int t_col/*  , pid_t expand, int all */);