htop/linux/Platform.h

52 lines
1.3 KiB
C
Raw Normal View History

#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"
#include "MainPanel.h"
#include "BatteryMeter.h"
#include "LinuxProcess.h"
#include "SignalsPanel.h"
#ifndef CLAMP
#define CLAMP(x,low,high) (((x)>(high))?(high):(((x)<(low))?(low):(x)))
#endif
extern ProcessField Platform_defaultFields[];
extern int Platform_numberOfFields;
extern const SignalItem Platform_signals[];
extern const unsigned int Platform_numberOfSignals;
extern void Platform_setBindings(Htop_Action* keys);
extern MeterClass* Platform_meterTypes[];
extern int Platform_getUptime();
extern void Platform_getLoadAverage(double* one, double* five, double* fifteen);
extern int Platform_getMaxPid();
extern double Platform_setCPUValues(Meter* this, int cpu);
extern void Platform_setMemoryValues(Meter* this);
extern void Platform_setSwapValues(Meter* this);
2020-08-20 08:24:35 +00:00
extern void Platform_setZfsArcValues(Meter* this);
2020-08-20 08:24:35 +00:00
extern void Platform_setZfsCompressedArcValues(Meter* this);
extern char* Platform_getProcessEnv(pid_t pid);
2020-08-20 03:59:41 +00:00
extern void Platform_getPressureStall(const char *file, bool some, double* ten, double* sixty, double* threehundred);
#endif