Platform.h 1.24 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"

Hisham Muhammad's avatar
Hisham Muhammad committed
19
20
21
22
typedef enum DarwinProcessFields {
   LAST_PROCESSFIELD = 100,
} DarwinProcessField;

23
24
25
26
#ifndef CLAMP
#define CLAMP(x,low,high) (((x)>(high))?(high):(((x)<(low))?(low):(x)))
#endif

27
28
extern ProcessField Platform_defaultFields[];

Explorer09's avatar
Explorer09 committed
29
extern const SignalItem Platform_signals[];
30

Explorer09's avatar
Explorer09 committed
31
extern const unsigned int Platform_numberOfSignals;
32

33
34
35
36
37
38
39
40
41
42
43
44
45
46
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();

47
48
extern ProcessPidColumn Process_pidColumns[];

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

David Hunt's avatar
David Hunt committed
51
void Platform_setMemoryValues(Meter* mtr);
52

SaltwaterC's avatar
SaltwaterC committed
53
void Platform_setSwapValues(Meter* mtr);
54

Michael Klein's avatar
Michael Klein committed
55
56
char* Platform_getProcessEnv(pid_t pid);

57
#endif