2017-04-19 14:12:17 +00:00
|
|
|
#ifndef HEADER_DragonFlyBSDProcessList
|
|
|
|
#define HEADER_DragonFlyBSDProcessList
|
|
|
|
/*
|
|
|
|
htop - DragonFlyBSDProcessList.h
|
|
|
|
(C) 2014 Hisham H. Muhammad
|
|
|
|
(C) 2017 Diederik de Groot
|
2021-09-22 09:33:00 +00:00
|
|
|
Released under the GNU GPLv2+, see the COPYING file
|
2017-04-19 14:12:17 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2021-05-22 07:24:30 +00:00
|
|
|
#include <sys/types.h> // required for kvm.h
|
2017-04-19 14:12:17 +00:00
|
|
|
#include <kvm.h>
|
|
|
|
#include <osreldate.h>
|
2021-05-22 07:24:30 +00:00
|
|
|
#include <stdbool.h>
|
2017-04-19 14:12:17 +00:00
|
|
|
#include <sys/jail.h>
|
2021-05-22 07:24:30 +00:00
|
|
|
#include <sys/param.h>
|
2017-04-19 14:12:17 +00:00
|
|
|
#include <sys/resource.h>
|
2021-05-22 07:24:30 +00:00
|
|
|
#include <sys/uio.h>
|
|
|
|
|
2017-04-20 13:14:33 +00:00
|
|
|
#include "Hashtable.h"
|
2021-05-22 07:24:30 +00:00
|
|
|
#include "ProcessList.h"
|
|
|
|
#include "UsersTable.h"
|
2021-04-29 18:13:36 +00:00
|
|
|
|
|
|
|
#include "dragonflybsd/DragonFlyBSDProcess.h"
|
2017-04-19 14:12:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
typedef struct CPUData_ {
|
|
|
|
double userPercent;
|
|
|
|
double nicePercent;
|
|
|
|
double systemPercent;
|
|
|
|
double irqPercent;
|
|
|
|
double idlePercent;
|
|
|
|
double systemAllPercent;
|
|
|
|
} CPUData;
|
|
|
|
|
|
|
|
typedef struct DragonFlyBSDProcessList_ {
|
|
|
|
ProcessList super;
|
|
|
|
kvm_t* kd;
|
|
|
|
|
|
|
|
unsigned long long int memWire;
|
|
|
|
unsigned long long int memActive;
|
|
|
|
unsigned long long int memInactive;
|
|
|
|
unsigned long long int memFree;
|
|
|
|
|
|
|
|
CPUData* cpus;
|
|
|
|
|
2020-10-31 22:28:02 +00:00
|
|
|
unsigned long* cp_time_o;
|
|
|
|
unsigned long* cp_time_n;
|
2017-04-19 14:12:17 +00:00
|
|
|
|
2020-10-31 22:28:02 +00:00
|
|
|
unsigned long* cp_times_o;
|
|
|
|
unsigned long* cp_times_n;
|
2017-04-19 14:12:17 +00:00
|
|
|
|
2020-10-31 22:28:02 +00:00
|
|
|
Hashtable* jails;
|
2017-04-19 14:12:17 +00:00
|
|
|
} DragonFlyBSDProcessList;
|
|
|
|
|
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);
|
2017-04-19 14:12:17 +00:00
|
|
|
|
|
|
|
void ProcessList_delete(ProcessList* this);
|
|
|
|
|
2020-12-05 23:43:41 +00:00
|
|
|
void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate);
|
2017-04-19 14:12:17 +00:00
|
|
|
|
2021-06-12 20:04:37 +00:00
|
|
|
bool ProcessList_isCPUonline(const ProcessList* super, unsigned int id);
|
|
|
|
|
2017-04-19 14:12:17 +00:00
|
|
|
#endif
|