htop/unsupported/Platform.h

60 lines
1.5 KiB
C
Raw Normal View History

#ifndef HEADER_Platform
#define HEADER_Platform
/*
htop - unsupported/Platform.h
(C) 2014 Hisham H. Muhammad
2015-07-12 16:26:33 +00:00
(C) 2015 David C. Hunt
Released under the GNU GPLv2, see the COPYING file
in the source distribution for its full text.
*/
#include "Action.h"
#include "BatteryMeter.h"
#include "SignalsPanel.h"
#include "UnsupportedProcess.h"
extern const SignalItem Platform_signals[];
extern const unsigned int Platform_numberOfSignals;
2015-07-12 16:26:33 +00:00
extern ProcessField Platform_defaultFields[];
extern ProcessFieldData Process_fields[];
2020-10-05 11:19:50 +00:00
extern const MeterClass* const Platform_meterTypes[];
2015-07-12 16:26:33 +00:00
void Platform_setBindings(Htop_Action* keys);
extern int Platform_numberOfFields;
extern char Process_pidFormat[20];
extern ProcessPidColumn Process_pidColumns[];
2015-07-12 16:26:33 +00:00
int Platform_getUptime(void);
2014-11-27 22:03:29 +00:00
void Platform_getLoadAverage(double* one, double* five, double* fifteen);
int Platform_getMaxPid(void);
2015-07-12 16:26:33 +00:00
double Platform_setCPUValues(Meter* this, int cpu);
void Platform_setMemoryValues(Meter* this);
void Platform_setSwapValues(Meter* this);
bool Process_isThread(const Process* this);
2015-07-12 16:26:33 +00:00
2016-02-02 11:11:41 +00:00
char* Platform_getProcessEnv(pid_t pid);
2015-07-12 16:26:33 +00:00
bool Platform_getDiskIO(unsigned long int *bytesRead,
unsigned long int *bytesWrite,
unsigned long int *msTimeSpend);
bool Platform_getNetworkIO(unsigned long int *bytesReceived,
2020-10-08 14:34:54 +00:00
unsigned long int *packetsReceived,
unsigned long int *bytesTransmitted,
unsigned long int *packetsTransmitted);
#endif