source: trunk/third/gnome-system-monitor/src/load-graph.h @ 18394

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
6enum
7{
8        CPU_GRAPH,
9        MEM_GRAPH,
10};
11
12
13/* Create new load graph. */
14LoadGraph *
15load_graph_new (gint type, ProcData *procdata);
16
17/* Force a drawing update */
18void
19load_graph_draw (LoadGraph *g);
20
21/* Start load graph. */
22void
23load_graph_start (LoadGraph *g);
24
25/* Stop load graph. */
26void
27load_graph_stop (LoadGraph *g);
28
29#endif
Note: See TracBrowser for help on using the repository browser.