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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <kvm.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <osreldate.h>
|
|
|
|
#include <sys/kinfo.h>
|
|
|
|
#include <kinfo.h>
|
|
|
|
#include <sys/jail.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/resource.h>
|
2017-04-20 13:14:33 +00:00
|
|
|
#include "Hashtable.h"
|
2017-04-19 14:12:17 +00:00
|
|
|
#include "DragonFlyBSDProcess.h"
|
|
|
|
|
2020-10-20 11:14:32 +00:00
|
|
|
#define JAIL_ERRMSGLEN 1024
|
2020-09-08 07:33:50 +00:00
|
|
|
extern char jail_errmsg[JAIL_ERRMSGLEN];
|
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;
|
|
|
|
|
|
|
|
unsigned long *cp_time_o;
|
|
|
|
unsigned long *cp_time_n;
|
|
|
|
|
|
|
|
unsigned long *cp_times_o;
|
|
|
|
unsigned long *cp_times_n;
|
|
|
|
|
2017-04-20 13:14:33 +00:00
|
|
|
Hashtable *jails;
|
2017-04-19 14:12:17 +00:00
|
|
|
} DragonFlyBSDProcessList;
|
|
|
|
|
2020-09-09 09:38:15 +00:00
|
|
|
ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidMatchList, uid_t userId);
|
2017-04-19 14:12:17 +00:00
|
|
|
|
|
|
|
void ProcessList_delete(ProcessList* this);
|
|
|
|
|
|
|
|
char* DragonFlyBSDProcessList_readProcessName(kvm_t* kd, struct kinfo_proc* kproc, int* basenameEnd);
|
|
|
|
|
2017-04-20 13:14:33 +00:00
|
|
|
char* DragonFlyBSDProcessList_readJailName(DragonFlyBSDProcessList* dfpl, int jailid);
|
2017-04-19 14:12:17 +00:00
|
|
|
|
2020-10-27 20:26:28 +00:00
|
|
|
void ProcessList_goThroughEntries(ProcessList* super, pauseProcessUpdate);
|
2017-04-19 14:12:17 +00:00
|
|
|
|
|
|
|
#endif
|