Revision 18394,
393 bytes
checked in by ghudson, 22 years ago
(diff) |
This commit was generated by cvs2svn to compensate for changes in r18393,
which included commits to RCS files with non-trunk default branches.
|
Line | |
---|
1 | #ifndef LOAD_GRAPH_H__ |
---|
2 | #define LOAD_GRAPH_H__ |
---|
3 | |
---|
4 | #include "procman.h" |
---|
5 | |
---|
6 | enum |
---|
7 | { |
---|
8 | CPU_GRAPH, |
---|
9 | MEM_GRAPH, |
---|
10 | }; |
---|
11 | |
---|
12 | |
---|
13 | /* Create new load graph. */ |
---|
14 | LoadGraph * |
---|
15 | load_graph_new (gint type, ProcData *procdata); |
---|
16 | |
---|
17 | /* Force a drawing update */ |
---|
18 | void |
---|
19 | load_graph_draw (LoadGraph *g); |
---|
20 | |
---|
21 | /* Start load graph. */ |
---|
22 | void |
---|
23 | load_graph_start (LoadGraph *g); |
---|
24 | |
---|
25 | /* Stop load graph. */ |
---|
26 | void |
---|
27 | load_graph_stop (LoadGraph *g); |
---|
28 | |
---|
29 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.