2014-11-27 21:02:52 -02:00
|
|
|
#ifndef HEADER_LinuxProcessList
|
|
|
|
#define HEADER_LinuxProcessList
|
|
|
|
/*
|
|
|
|
htop - LinuxProcessList.h
|
|
|
|
(C) 2014 Hisham H. Muhammad
|
2020-10-05 09:51:32 +02:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2014-11-27 21:02:52 -02:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2020-09-19 13:55:23 +02:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include "Hashtable.h"
|
2014-11-27 21:02:52 -02:00
|
|
|
#include "ProcessList.h"
|
2020-09-19 13:55:23 +02:00
|
|
|
#include "UsersTable.h"
|
2020-09-22 18:54:15 +07:00
|
|
|
#include "ZramStats.h"
|
2019-07-07 23:27:00 +00:00
|
|
|
#include "zfs/ZfsArcStats.h"
|
2014-11-27 21:02:52 -02:00
|
|
|
|
2021-01-14 09:46:37 -05:00
|
|
|
#define HTOP_HUGEPAGE_BASE_SHIFT 16
|
|
|
|
#define HTOP_HUGEPAGE_COUNT 24
|
2020-09-22 18:54:15 +07:00
|
|
|
|
2015-01-21 23:27:31 -02: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 11:39:12 -05:00
|
|
|
|
2015-01-21 23:27:31 -02: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-10 22:19:32 -07:00
|
|
|
|
|
|
|
double frequency;
|
2020-09-10 19:56:33 +02:00
|
|
|
|
2020-12-01 13:59:19 +01:00
|
|
|
#ifdef HAVE_SENSORS_SENSORS_H
|
2020-09-10 19:56:33 +02:00
|
|
|
double temperature;
|
|
|
|
#endif
|
2015-01-21 23:27:31 -02:00
|
|
|
} CPUData;
|
|
|
|
|
2016-10-01 03:09:04 -03:00
|
|
|
typedef struct TtyDriver_ {
|
|
|
|
char* path;
|
|
|
|
unsigned int major;
|
|
|
|
unsigned int minorFrom;
|
|
|
|
unsigned int minorTo;
|
|
|
|
} TtyDriver;
|
|
|
|
|
2015-01-21 23:27:31 -02:00
|
|
|
typedef struct LinuxProcessList_ {
|
|
|
|
ProcessList super;
|
2019-10-31 11:39:12 -05:00
|
|
|
|
2015-01-21 23:27:31 -02:00
|
|
|
CPUData* cpus;
|
2016-10-01 03:09:04 -03:00
|
|
|
TtyDriver* ttyDrivers;
|
2018-10-16 20:08:23 +02:00
|
|
|
bool haveSmapsRollup;
|
2019-10-31 11:39:12 -05:00
|
|
|
|
2017-12-04 00:15:29 -02:00
|
|
|
#ifdef HAVE_DELAYACCT
|
2020-10-31 23:28:02 +01:00
|
|
|
struct nl_sock* netlink_socket;
|
2017-12-04 00:15:29 -02:00
|
|
|
int netlink_family;
|
|
|
|
#endif
|
2019-07-07 02:37:02 +00:00
|
|
|
|
2021-01-06 18:11:24 +01:00
|
|
|
memory_t totalHugePageMem;
|
|
|
|
memory_t usedHugePageMem[HTOP_HUGEPAGE_COUNT];
|
|
|
|
|
|
|
|
memory_t availableMem;
|
2021-01-05 15:50:23 +01:00
|
|
|
|
2019-07-07 23:27:00 +00:00
|
|
|
ZfsArcStats zfs;
|
2020-09-22 18:54:15 +07:00
|
|
|
ZramStats zram;
|
2015-01-21 23:27:31 -02:00
|
|
|
} LinuxProcessList;
|
|
|
|
|
2014-11-27 21:02:52 -02:00
|
|
|
#ifndef PROCDIR
|
|
|
|
#define PROCDIR "/proc"
|
|
|
|
#endif
|
|
|
|
|
2019-08-10 22:19:32 -07:00
|
|
|
#ifndef PROCCPUINFOFILE
|
|
|
|
#define PROCCPUINFOFILE PROCDIR "/cpuinfo"
|
|
|
|
#endif
|
|
|
|
|
2014-11-27 21:02:52 -02: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 03:09:04 -03:00
|
|
|
#ifndef PROCTTYDRIVERSFILE
|
|
|
|
#define PROCTTYDRIVERSFILE PROCDIR "/tty/drivers"
|
|
|
|
#endif
|
|
|
|
|
2015-12-14 13:27:11 -02:00
|
|
|
#ifndef PROC_LINE_LENGTH
|
2018-08-18 21:29:03 -07:00
|
|
|
#define PROC_LINE_LENGTH 4096
|
2015-12-14 13:27:11 -02:00
|
|
|
#endif
|
|
|
|
|
2021-06-23 17:44:56 +10:00
|
|
|
ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* dynamicMeters, Hashtable* pidMatchList, uid_t userId);
|
2014-11-27 21:02:52 -02:00
|
|
|
|
2020-09-02 02:38:44 -05:00
|
|
|
void ProcessList_delete(ProcessList* pl);
|
2014-11-27 21:02:52 -02:00
|
|
|
|
2020-10-13 16:03:37 +02:00
|
|
|
void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate);
|
2014-11-27 21:02:52 -02:00
|
|
|
|
|
|
|
#endif
|