2018-03-02 21:20:46 +00:00
|
|
|
#ifndef HEADER_SolarisProcessList
|
|
|
|
#define HEADER_SolarisProcessList
|
|
|
|
/*
|
|
|
|
htop - SolarisProcessList.h
|
|
|
|
(C) 2014 Hisham H. Muhammad
|
2018-03-05 21:52:03 +00:00
|
|
|
(C) 2017,2018 Guy M. Broome
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2018-03-02 21:20:46 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define MAXCMDLINE 255
|
|
|
|
|
2020-10-20 11:14:32 +00:00
|
|
|
#define GZONE "global "
|
|
|
|
#define UZONE "unknown "
|
2018-03-02 21:20:46 +00:00
|
|
|
|
2021-05-19 17:01:30 +00:00
|
|
|
|
|
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
|
2018-03-02 21:20:46 +00:00
|
|
|
#include <kstat.h>
|
2021-05-19 17:01:30 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
2018-03-02 21:20:46 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#include <sys/sysconf.h>
|
|
|
|
#include <sys/sysinfo.h>
|
|
|
|
#include <sys/swap.h>
|
|
|
|
|
2021-05-19 17:01:30 +00:00
|
|
|
#include "Hashtable.h"
|
|
|
|
#include "ProcessList.h"
|
|
|
|
#include "UsersTable.h"
|
|
|
|
|
|
|
|
#include "solaris/SolarisProcess.h"
|
|
|
|
|
2021-04-29 18:13:36 +00:00
|
|
|
#include "zfs/ZfsArcStats.h"
|
|
|
|
|
|
|
|
|
2018-03-02 21:20:46 +00:00
|
|
|
#define ZONE_ERRMSGLEN 1024
|
2020-09-05 05:34:27 +00:00
|
|
|
extern char zone_errmsg[ZONE_ERRMSGLEN];
|
2018-03-02 21:20:46 +00:00
|
|
|
|
|
|
|
typedef struct CPUData_ {
|
|
|
|
double userPercent;
|
|
|
|
double nicePercent;
|
|
|
|
double systemPercent;
|
|
|
|
double irqPercent;
|
|
|
|
double idlePercent;
|
|
|
|
double systemAllPercent;
|
2020-12-24 13:01:23 +00:00
|
|
|
double frequency;
|
2018-03-02 21:20:46 +00:00
|
|
|
uint64_t luser;
|
|
|
|
uint64_t lkrnl;
|
|
|
|
uint64_t lintr;
|
|
|
|
uint64_t lidle;
|
|
|
|
} CPUData;
|
|
|
|
|
|
|
|
typedef struct SolarisProcessList_ {
|
|
|
|
ProcessList super;
|
|
|
|
kstat_ctl_t* kd;
|
|
|
|
CPUData* cpus;
|
2019-07-08 02:43:39 +00:00
|
|
|
ZfsArcStats zfs;
|
2018-03-02 21:20:46 +00:00
|
|
|
} SolarisProcessList;
|
|
|
|
|
2020-09-09 09:38:15 +00:00
|
|
|
ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidMatchList, uid_t userId);
|
2018-03-02 21:20:46 +00:00
|
|
|
|
2018-03-30 18:34:12 +00:00
|
|
|
void ProcessList_delete(ProcessList* pl);
|
2018-03-02 21:20:46 +00:00
|
|
|
|
2020-10-27 20:26:28 +00:00
|
|
|
void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate);
|
2018-03-02 21:20:46 +00:00
|
|
|
|
|
|
|
#endif
|