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

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

#include "Action.h"
14
15
#include "SignalsPanel.h"
#include "CPUMeter.h"
16
17
18
#include "BatteryMeter.h"
#include "DarwinProcess.h"

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

23
24
extern ProcessField Platform_defaultFields[];

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

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

29
30
31
32
33
34
35
36
37
38
39
40
41
42
extern ProcessFieldData Process_fields[];

extern MeterClass* Platform_meterTypes[];

void Platform_setBindings(Htop_Action* keys);

extern int Platform_numberOfFields;

int Platform_getUptime();

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

int Platform_getMaxPid();

43
44
extern ProcessPidColumn Process_pidColumns[];

David Hunt's avatar
David Hunt committed
45
double Platform_setCPUValues(Meter* mtr, int cpu);
46

David Hunt's avatar
David Hunt committed
47
void Platform_setMemoryValues(Meter* mtr);
48

SaltwaterC's avatar
SaltwaterC committed
49
void Platform_setSwapValues(Meter* mtr);
50

Michael Klein's avatar
Michael Klein committed
51
52
char* Platform_getProcessEnv(pid_t pid);

53
#endif