Platform.h 1.05 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
/* Do not edit this file. It was automatically generated. */

#ifndef HEADER_Platform
#define HEADER_Platform
/*
htop - linux/Platform.h
(C) 2014 Hisham H. Muhammad
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/

#include "Action.h"
13
#include "MainPanel.h"
14
#include "BatteryMeter.h"
15
#include "LinuxProcess.h"
16
#include "SignalsPanel.h"
17

18
19
20
21
#ifndef CLAMP
#define CLAMP(x,low,high) (((x)>(high))?(high):(((x)<(low))?(low):(x)))
#endif

22
extern ProcessField Platform_defaultFields[];
23
24
25

extern int Platform_numberOfFields;

Explorer09's avatar
Explorer09 committed
26
extern const SignalItem Platform_signals[];
27

Explorer09's avatar
Explorer09 committed
28
extern const unsigned int Platform_numberOfSignals;
29

30
31
32
33
34
35
36
37
38
39
void Platform_setBindings(Htop_Action* keys);

extern MeterClass* Platform_meterTypes[];

int Platform_getUptime();

void Platform_getLoadAverage(double* one, double* five, double* fifteen);

int Platform_getMaxPid();

Hisham Muhammad's avatar
Hisham Muhammad committed
40
41
42
43
44
45
double Platform_setCPUValues(Meter* this, int cpu);

void Platform_setMemoryValues(Meter* this);

void Platform_setSwapValues(Meter* this);

Michael Klein's avatar
Michael Klein committed
46
47
char* Platform_getProcessEnv(pid_t pid);

48
#endif