2015-09-18 04:46:48 +00:00
|
|
|
#ifndef HEADER_OpenBSDProcessList
|
|
|
|
#define HEADER_OpenBSDProcessList
|
|
|
|
/*
|
|
|
|
htop - OpenBSDProcessList.h
|
|
|
|
(C) 2014 Hisham H. Muhammad
|
|
|
|
(C) 2015 Michael McConville
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2015-09-18 04:46:48 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <kvm.h>
|
2020-12-05 21:57:07 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include "Hashtable.h"
|
|
|
|
#include "ProcessList.h"
|
|
|
|
#include "UsersTable.h"
|
|
|
|
|
2015-09-18 04:46:48 +00:00
|
|
|
|
|
|
|
typedef struct CPUData_ {
|
|
|
|
unsigned long long int totalTime;
|
2018-12-16 08:25:54 +00:00
|
|
|
unsigned long long int userTime;
|
|
|
|
unsigned long long int niceTime;
|
|
|
|
unsigned long long int sysTime;
|
|
|
|
unsigned long long int sysAllTime;
|
|
|
|
unsigned long long int spinTime;
|
|
|
|
unsigned long long int intrTime;
|
|
|
|
unsigned long long int idleTime;
|
|
|
|
|
2015-09-18 04:46:48 +00:00
|
|
|
unsigned long long int totalPeriod;
|
2018-12-16 08:25:54 +00:00
|
|
|
unsigned long long int userPeriod;
|
|
|
|
unsigned long long int nicePeriod;
|
|
|
|
unsigned long long int sysPeriod;
|
|
|
|
unsigned long long int sysAllPeriod;
|
|
|
|
unsigned long long int spinPeriod;
|
|
|
|
unsigned long long int intrPeriod;
|
|
|
|
unsigned long long int idlePeriod;
|
2021-03-27 13:26:26 +00:00
|
|
|
|
2021-06-13 12:24:51 +00:00
|
|
|
bool online;
|
2015-09-18 04:46:48 +00:00
|
|
|
} CPUData;
|
|
|
|
|
|
|
|
typedef struct OpenBSDProcessList_ {
|
|
|
|
ProcessList super;
|
|
|
|
kvm_t* kd;
|
|
|
|
|
2021-06-13 12:24:51 +00:00
|
|
|
CPUData* cpuData;
|
2021-03-19 16:34:12 +00:00
|
|
|
int cpuSpeed;
|
2015-09-18 04:46:48 +00:00
|
|
|
|
|
|
|
} OpenBSDProcessList;
|
|
|
|
|
|
|
|
|
PCP: support for 'dynamic columns' added at runtime
Implements support for arbitrary Performance Co-Pilot
metrics with per-process instance domains to form new
htop columns. The column-to-metric mappings are setup
using configuration files which will be documented via
man pages as part of a follow-up commit.
We provide an initial set of column configurations so
as to provide new capabilities to pcp-htop: including
configs for containers, open fd counts, scheduler run
queue time, tcp/udp bytes/calls sent/recv, delay acct,
virtual machine guests, detailed virtual memory, swap.
Note there is a change to the configuration file path
resolution algorithm introduced for 'dynamic meters'.
First, look in any custom PCP_HTOP_DIR location. Then
iterate, in priority order, users home directory, then
local sysadmins files in /etc/pcp/htop, then readonly
configuration files below /usr/share/pcp/htop. This
final location becomes the preferred place for our own
shipped meter and column files.
The Settings file (htoprc) writing code is updated to
not using the numeric identifier for dynamic columns.
The same strategy used for dynamic meters is used here
where we write Dynamic(name) so the name can be setup
once more at start. Regular (static) columns writing
to htoprc - i.e. numerically indexed - is unchanged.
2021-07-11 01:11:29 +00:00
|
|
|
ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* dynamicMeters, Hashtable* dynamicColumns, Hashtable* pidMatchList, uid_t userId);
|
2015-09-18 04:46:48 +00:00
|
|
|
|
|
|
|
void ProcessList_delete(ProcessList* this);
|
|
|
|
|
2020-10-27 20:26:28 +00:00
|
|
|
void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate);
|
2015-09-18 04:46:48 +00:00
|
|
|
|
2021-06-12 20:04:37 +00:00
|
|
|
bool ProcessList_isCPUonline(const ProcessList* super, unsigned int id);
|
|
|
|
|
2015-09-18 04:46:48 +00:00
|
|
|
#endif
|