2015-07-12 18:47:43 +00:00
|
|
|
#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"
|
2015-11-02 15:46:04 +00:00
|
|
|
#include "SignalsPanel.h"
|
|
|
|
#include "CPUMeter.h"
|
2015-07-12 18:47:43 +00:00
|
|
|
#include "BatteryMeter.h"
|
|
|
|
#include "DarwinProcess.h"
|
|
|
|
|
|
|
|
extern ProcessField Platform_defaultFields[];
|
|
|
|
|
2016-08-30 12:41:17 +00:00
|
|
|
extern const SignalItem Platform_signals[];
|
2015-10-19 19:22:54 +00:00
|
|
|
|
2016-08-30 12:41:17 +00:00
|
|
|
extern const unsigned int Platform_numberOfSignals;
|
2015-10-19 19:22:54 +00:00
|
|
|
|
2015-07-12 18:47:43 +00:00
|
|
|
extern ProcessFieldData Process_fields[];
|
|
|
|
|
|
|
|
extern MeterClass* Platform_meterTypes[];
|
|
|
|
|
|
|
|
void Platform_setBindings(Htop_Action* keys);
|
|
|
|
|
|
|
|
extern int Platform_numberOfFields;
|
|
|
|
|
2020-09-08 12:28:34 +00:00
|
|
|
int Platform_getUptime(void);
|
2015-07-12 18:47:43 +00:00
|
|
|
|
|
|
|
void Platform_getLoadAverage(double* one, double* five, double* fifteen);
|
|
|
|
|
2020-09-08 12:28:34 +00:00
|
|
|
int Platform_getMaxPid(void);
|
2015-07-12 18:47:43 +00:00
|
|
|
|
2015-10-19 19:22:54 +00:00
|
|
|
extern ProcessPidColumn Process_pidColumns[];
|
|
|
|
|
2015-07-13 21:53:46 +00:00
|
|
|
double Platform_setCPUValues(Meter* mtr, int cpu);
|
2015-07-12 18:47:43 +00:00
|
|
|
|
2015-07-14 02:02:40 +00:00
|
|
|
void Platform_setMemoryValues(Meter* mtr);
|
2015-07-12 18:47:43 +00:00
|
|
|
|
2015-11-16 17:32:22 +00:00
|
|
|
void Platform_setSwapValues(Meter* mtr);
|
2015-07-12 18:47:43 +00:00
|
|
|
|
2019-07-07 23:27:00 +00:00
|
|
|
void Platform_setZfsArcValues(Meter* this);
|
2019-07-07 21:30:37 +00:00
|
|
|
|
2019-09-03 18:26:02 +00:00
|
|
|
void Platform_setZfsCompressedArcValues(Meter* this);
|
|
|
|
|
2015-12-03 21:16:10 +00:00
|
|
|
char* Platform_getProcessEnv(pid_t pid);
|
|
|
|
|
2015-07-12 18:47:43 +00:00
|
|
|
#endif
|