File: loadmeter.h

package info (click to toggle)
loadmeter 1.20-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 140 kB
  • ctags: 220
  • sloc: ansic: 1,939; makefile: 71
file content (95 lines) | stat: -rw-r--r-- 2,188 bytes parent folder | download | duplicates (5)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#include <stdio.h>
#include <stdlib.h>
#include <X11/X.h>
#include <X11/Xlib.h>
#include <X11/Xresource.h>
#include <X11/Xutil.h>
#include <X11/Xatom.h>
#include <X11/Xos.h>

/* Minimum time between getting filesystem usages */
#define DUINTERVAL 10
/* Max no of filesystems we can watch */
#define MAXFILESYSTEMS 20
/* Default window geometry */
#define DEFAULTWIDTH 40
#define DEFAULTHEIGHT 100
/* Minimum window size */
#define MINWIDTH 25
#define MINHEIGHT 75
/* Default filesystem usage% before highlighting */
#define DEFAULTWARNPCT 90
/* Default hostname font */
#define HOSTFONT "-schumacher-clean-medium-r-*-*-7-*-*-*-*-*-*-*"
/* Default font for stats popup window */
#define POPUPFONT "-misc-fixed-medium-r-*-*-10-*-*-*-*-*-*-*"
/* Default load digit font */
#define DIGITFONT "6x10"

Bool dosync;
char hostname[25];
GC gc, rgc, ggc, ygc, blgc, ptextgc;
GC tgc, bgc, bkgc;
GC popgc, poptgc, popbgc;
GC warngc, hlgc, metergc;
Display *disp;
Window win, popup, root, info;
XFontStruct *pfont, *font2, *font;
int screen, depth;
int fontheight;
unsigned int width, height, pw, ph;
unsigned int pwidth, pheight;
unsigned int rwidth, rheight;
double load, avg, davg;
int processes;
int warnpct;
Bool menuhl;
Bool shrinkpopup;


unsigned int yel;
XColor popbg;


void Doinit(), GetLoadPoint(), GetUptime(), Getgeom(), ShowInfo();
void GetMemInfo(), GetDiskUsage(), draw_popup(), do_popup(), do_popdown();
void dobevels(), infodown();
char * commanum();
Window MakePopup();


/* Structure to hold the maximum load info */
typedef struct _maxload {
	int num;		/* Where we are on the bar graph */
	float load;	/* Actual load - unused */
	long time;	/* Time it  was recorded - unused */
} _maxload;

/* Holds info for disk usages */
typedef struct _use {
	char *path;	/* Mount point */
	char *dev;	/* Actual device */
	char *type;	/* Type of fs */
	long blocks;	/* Total blocks */
	long bfree;	/* Free blocks */
} Diskusage;

typedef struct _muse {
	char *muse;
	char *suse;
	long shared;
	long cached;
	long swaptotal;
	long swapfree;
	long memtotal;
	long memfree;
} Memusage;

Memusage memory;

Diskusage usages[MAXFILESYSTEMS];
_maxload maxload;

#ifndef LINUX
long boot_time;
#endif