2014-11-27 23:02:52 +00:00
|
|
|
#ifndef HEADER_LinuxProcessList
|
|
|
|
#define HEADER_LinuxProcessList
|
|
|
|
/*
|
|
|
|
htop - LinuxProcessList.h
|
|
|
|
(C) 2014 Hisham H. Muhammad
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2014-11-27 23:02:52 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include "Hashtable.h"
|
2014-11-27 23:02:52 +00:00
|
|
|
#include "ProcessList.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "UsersTable.h"
|
2020-09-22 11:54:15 +00:00
|
|
|
#include "ZramStats.h"
|
2019-07-07 23:27:00 +00:00
|
|
|
#include "zfs/ZfsArcStats.h"
|
2014-11-27 23:02:52 +00:00
|
|
|
|
2021-01-14 14:46:37 +00:00
|
|
|
#define HTOP_HUGEPAGE_BASE_SHIFT 16
|
|
|
|
#define HTOP_HUGEPAGE_COUNT 24
|
2020-09-22 11:54:15 +00:00
|
|
|
|
2015-01-22 01:27:31 +00:00
|
|
|
typedef struct CPUData_ {
|
|
|
|
unsigned long long int totalTime;
|
|
|
|
unsigned long long int userTime;
|
|
|
|
unsigned long long int systemTime;
|
|
|
|
unsigned long long int systemAllTime;
|
|
|
|
unsigned long long int idleAllTime;
|
|
|
|
unsigned long long int idleTime;
|
|
|
|
unsigned long long int niceTime;
|
|
|
|
unsigned long long int ioWaitTime;
|
|
|
|
unsigned long long int irqTime;
|
|
|
|
unsigned long long int softIrqTime;
|
|
|
|
unsigned long long int stealTime;
|
|
|
|
unsigned long long int guestTime;
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2015-01-22 01:27:31 +00:00
|
|
|
unsigned long long int totalPeriod;
|
|
|
|
unsigned long long int userPeriod;
|
|
|
|
unsigned long long int systemPeriod;
|
|
|
|
unsigned long long int systemAllPeriod;
|
|
|
|
unsigned long long int idleAllPeriod;
|
|
|
|
unsigned long long int idlePeriod;
|
|
|
|
unsigned long long int nicePeriod;
|
|
|
|
unsigned long long int ioWaitPeriod;
|
|
|
|
unsigned long long int irqPeriod;
|
|
|
|
unsigned long long int softIrqPeriod;
|
|
|
|
unsigned long long int stealPeriod;
|
|
|
|
unsigned long long int guestPeriod;
|
2019-08-11 05:19:32 +00:00
|
|
|
|
|
|
|
double frequency;
|
2020-09-10 17:56:33 +00:00
|
|
|
|
2020-12-01 12:59:19 +00:00
|
|
|
#ifdef HAVE_SENSORS_SENSORS_H
|
2020-09-10 17:56:33 +00:00
|
|
|
double temperature;
|
|
|
|
#endif
|
2021-06-12 16:17:28 +00:00
|
|
|
|
|
|
|
bool online;
|
2015-01-22 01:27:31 +00:00
|
|
|
} CPUData;
|
|
|
|
|
2016-10-01 06:09:04 +00:00
|
|
|
typedef struct TtyDriver_ {
|
|
|
|
char* path;
|
|
|
|
unsigned int major;
|
|
|
|
unsigned int minorFrom;
|
|
|
|
unsigned int minorTo;
|
|
|
|
} TtyDriver;
|
|
|
|
|
2015-01-22 01:27:31 +00:00
|
|
|
typedef struct LinuxProcessList_ {
|
|
|
|
ProcessList super;
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2021-06-12 16:17:28 +00:00
|
|
|
CPUData* cpuData;
|
|
|
|
|
2016-10-01 06:09:04 +00:00
|
|
|
TtyDriver* ttyDrivers;
|
2018-10-16 18:08:23 +00:00
|
|
|
bool haveSmapsRollup;
|
2021-08-06 06:45:30 +00:00
|
|
|
bool haveAutogroup;
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2017-12-04 02:15:29 +00:00
|
|
|
#ifdef HAVE_DELAYACCT
|
2020-10-31 22:28:02 +00:00
|
|
|
struct nl_sock* netlink_socket;
|
2017-12-04 02:15:29 +00:00
|
|
|
int netlink_family;
|
|
|
|
#endif
|
2019-07-07 02:37:02 +00:00
|
|
|
|
2021-01-06 17:11:24 +00:00
|
|
|
memory_t totalHugePageMem;
|
|
|
|
memory_t usedHugePageMem[HTOP_HUGEPAGE_COUNT];
|
|
|
|
|
|
|
|
memory_t availableMem;
|
2021-01-05 14:50:23 +00:00
|
|
|
|
2019-07-07 23:27:00 +00:00
|
|
|
ZfsArcStats zfs;
|
2020-09-22 11:54:15 +00:00
|
|
|
ZramStats zram;
|
2015-01-22 01:27:31 +00:00
|
|
|
} LinuxProcessList;
|
|
|
|
|
2014-11-27 23:02:52 +00:00
|
|
|
#ifndef PROCDIR
|
|
|
|
#define PROCDIR "/proc"
|
|
|
|
#endif
|
|
|
|
|
2019-08-11 05:19:32 +00:00
|
|
|
#ifndef PROCCPUINFOFILE
|
|
|
|
#define PROCCPUINFOFILE PROCDIR "/cpuinfo"
|
|
|
|
#endif
|
|
|
|
|
2014-11-27 23:02:52 +00:00
|
|
|
#ifndef PROCSTATFILE
|
|
|
|
#define PROCSTATFILE PROCDIR "/stat"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef PROCMEMINFOFILE
|
|
|
|
#define PROCMEMINFOFILE PROCDIR "/meminfo"
|
|
|
|
#endif
|
|
|
|
|
2019-07-07 02:37:02 +00:00
|
|
|
#ifndef PROCARCSTATSFILE
|
|
|
|
#define PROCARCSTATSFILE PROCDIR "/spl/kstat/zfs/arcstats"
|
|
|
|
#endif
|
|
|
|
|
2016-10-01 06:09:04 +00:00
|
|
|
#ifndef PROCTTYDRIVERSFILE
|
|
|
|
#define PROCTTYDRIVERSFILE PROCDIR "/tty/drivers"
|
|
|
|
#endif
|
|
|
|
|
2015-12-14 15:27:11 +00:00
|
|
|
#ifndef PROC_LINE_LENGTH
|
2018-08-19 04:29:03 +00:00
|
|
|
#define PROC_LINE_LENGTH 4096
|
2015-12-14 15:27:11 +00:00
|
|
|
#endif
|
|
|
|
|
2021-06-23 07:44:56 +00:00
|
|
|
ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* dynamicMeters, Hashtable* pidMatchList, uid_t userId);
|
2014-11-27 23:02:52 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void ProcessList_delete(ProcessList* pl);
|
2014-11-27 23:02:52 +00:00
|
|
|
|
2020-10-13 14:03:37 +00:00
|
|
|
void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate);
|
2014-11-27 23:02:52 +00:00
|
|
|
|
2021-06-12 20:04:37 +00:00
|
|
|
bool ProcessList_isCPUonline(const ProcessList* super, unsigned int id);
|
|
|
|
|
2014-11-27 23:02:52 +00:00
|
|
|
#endif
|