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
|
2020-10-05 07:51:32 +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;
|
|
|
|
|
2021-07-18 10:41:11 +00:00
|
|
|
ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* dynamicMeters, 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
|