2014-11-27 18:27:34 +00:00
|
|
|
#ifndef HEADER_FreeBSDProcessList
|
|
|
|
#define HEADER_FreeBSDProcessList
|
|
|
|
/*
|
2014-11-27 19:44:55 +00:00
|
|
|
htop - FreeBSDProcessList.h
|
2014-11-27 18:27:34 +00:00
|
|
|
(C) 2014 Hisham H. Muhammad
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2014-11-27 18:27:34 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2014-11-27 19:44:55 +00:00
|
|
|
#include <kvm.h>
|
2020-11-18 14:12:18 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <sys/types.h>
|
2015-10-19 19:22:54 +00:00
|
|
|
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "Hashtable.h"
|
|
|
|
#include "ProcessList.h"
|
|
|
|
#include "UsersTable.h"
|
|
|
|
#include "zfs/ZfsArcStats.h"
|
|
|
|
|
|
|
|
|
2020-10-20 11:14:32 +00:00
|
|
|
#define JAIL_ERRMSGLEN 1024
|
2020-09-03 06:42:18 +00:00
|
|
|
extern char jail_errmsg[JAIL_ERRMSGLEN];
|
2014-11-27 19:44:55 +00:00
|
|
|
|
2015-03-16 06:13:42 +00:00
|
|
|
typedef struct CPUData_ {
|
2016-01-31 16:41:55 +00:00
|
|
|
double userPercent;
|
|
|
|
double nicePercent;
|
|
|
|
double systemPercent;
|
|
|
|
double irqPercent;
|
|
|
|
double idlePercent;
|
|
|
|
double systemAllPercent;
|
2015-03-16 06:13:42 +00:00
|
|
|
} CPUData;
|
|
|
|
|
2014-11-27 19:44:55 +00:00
|
|
|
typedef struct FreeBSDProcessList_ {
|
|
|
|
ProcessList super;
|
|
|
|
kvm_t* kd;
|
2015-03-16 06:13:42 +00:00
|
|
|
|
2016-01-31 16:41:55 +00:00
|
|
|
unsigned long long int memWire;
|
|
|
|
unsigned long long int memActive;
|
|
|
|
unsigned long long int memInactive;
|
|
|
|
unsigned long long int memFree;
|
2019-07-07 23:27:00 +00:00
|
|
|
|
|
|
|
ZfsArcStats zfs;
|
2016-01-31 16:41:55 +00:00
|
|
|
|
2015-03-16 06:13:42 +00:00
|
|
|
CPUData* cpus;
|
|
|
|
|
2020-10-21 11:56:26 +00:00
|
|
|
Hashtable* ttys;
|
|
|
|
|
2020-10-31 22:28:02 +00:00
|
|
|
unsigned long* cp_time_o;
|
|
|
|
unsigned long* cp_time_n;
|
2016-01-31 16:41:55 +00:00
|
|
|
|
2020-10-31 22:28:02 +00:00
|
|
|
unsigned long* cp_times_o;
|
|
|
|
unsigned long* cp_times_n;
|
2016-01-31 16:41:55 +00:00
|
|
|
|
2014-11-27 19:44:55 +00:00
|
|
|
} FreeBSDProcessList;
|
|
|
|
|
2020-09-09 09:38:15 +00:00
|
|
|
ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidMatchList, uid_t userId);
|
2014-11-27 20:31:39 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void ProcessList_delete(ProcessList* this);
|
2015-03-17 02:01:48 +00:00
|
|
|
|
2020-10-27 20:26:28 +00:00
|
|
|
void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate);
|
2014-11-27 18:27:34 +00:00
|
|
|
|
|
|
|
#endif
|