2014-11-27 23:02:52 +00:00
|
|
|
#ifndef HEADER_LinuxProcess
|
|
|
|
#define HEADER_LinuxProcess
|
|
|
|
/*
|
|
|
|
htop - LinuxProcess.h
|
|
|
|
(C) 2014 Hisham H. Muhammad
|
2020-08-19 23:35:24 +00:00
|
|
|
(C) 2020 Red Hat, Inc. All Rights Reserved.
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2014-11-27 23:02:52 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2020-12-06 14:22:41 +00:00
|
|
|
#include "config.h" // IWYU pragma: keep
|
2020-09-19 11:55:23 +00:00
|
|
|
|
|
|
|
#include <stdbool.h>
|
2021-08-24 15:27:43 +00:00
|
|
|
#include <sys/types.h>
|
2020-09-19 11:55:23 +00:00
|
|
|
|
2021-04-29 18:13:36 +00:00
|
|
|
#include "linux/IOPriority.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "Object.h"
|
|
|
|
#include "Process.h"
|
|
|
|
#include "Settings.h"
|
|
|
|
|
2020-11-18 13:26:30 +00:00
|
|
|
|
2020-12-28 19:51:02 +00:00
|
|
|
#define PROCESS_FLAG_LINUX_IOPRIO 0x00000100
|
|
|
|
#define PROCESS_FLAG_LINUX_OPENVZ 0x00000200
|
|
|
|
#define PROCESS_FLAG_LINUX_VSERVER 0x00000400
|
|
|
|
#define PROCESS_FLAG_LINUX_CGROUP 0x00000800
|
|
|
|
#define PROCESS_FLAG_LINUX_OOM 0x00001000
|
|
|
|
#define PROCESS_FLAG_LINUX_SMAPS 0x00002000
|
|
|
|
#define PROCESS_FLAG_LINUX_CTXT 0x00004000
|
|
|
|
#define PROCESS_FLAG_LINUX_SECATTR 0x00008000
|
|
|
|
#define PROCESS_FLAG_LINUX_LRS_FIX 0x00010000
|
|
|
|
#define PROCESS_FLAG_LINUX_DELAYACCT 0x00040000
|
2021-08-06 06:45:30 +00:00
|
|
|
#define PROCESS_FLAG_LINUX_AUTOGROUP 0x00080000
|
2015-03-15 23:29:13 +00:00
|
|
|
|
2014-11-27 23:02:52 +00:00
|
|
|
typedef struct LinuxProcess_ {
|
|
|
|
Process super;
|
|
|
|
IOPriority ioPriority;
|
2015-03-16 04:43:04 +00:00
|
|
|
unsigned long int cminflt;
|
|
|
|
unsigned long int cmajflt;
|
|
|
|
unsigned long long int utime;
|
|
|
|
unsigned long long int stime;
|
|
|
|
unsigned long long int cutime;
|
|
|
|
unsigned long long int cstime;
|
|
|
|
long m_share;
|
2018-10-09 19:49:29 +00:00
|
|
|
long m_pss;
|
|
|
|
long m_swap;
|
|
|
|
long m_psswp;
|
2015-03-16 04:43:04 +00:00
|
|
|
long m_trs;
|
|
|
|
long m_drs;
|
|
|
|
long m_lrs;
|
2021-01-27 14:11:48 +00:00
|
|
|
|
2021-04-26 15:57:47 +00:00
|
|
|
/* Data read (in bytes) */
|
2015-03-16 04:43:04 +00:00
|
|
|
unsigned long long io_rchar;
|
2021-01-27 14:11:48 +00:00
|
|
|
|
2021-04-26 15:57:47 +00:00
|
|
|
/* Data written (in bytes) */
|
2015-03-16 04:43:04 +00:00
|
|
|
unsigned long long io_wchar;
|
2021-01-27 14:11:48 +00:00
|
|
|
|
|
|
|
/* Number of read(2) syscalls */
|
2015-03-16 04:43:04 +00:00
|
|
|
unsigned long long io_syscr;
|
2021-01-27 14:11:48 +00:00
|
|
|
|
|
|
|
/* Number of write(2) syscalls */
|
2015-03-16 04:43:04 +00:00
|
|
|
unsigned long long io_syscw;
|
2021-01-27 14:11:48 +00:00
|
|
|
|
2021-04-26 15:57:47 +00:00
|
|
|
/* Storage data read (in bytes) */
|
2015-03-16 04:43:04 +00:00
|
|
|
unsigned long long io_read_bytes;
|
2021-01-27 14:11:48 +00:00
|
|
|
|
2021-04-26 15:57:47 +00:00
|
|
|
/* Storage data written (in bytes) */
|
2015-03-16 04:43:04 +00:00
|
|
|
unsigned long long io_write_bytes;
|
2021-01-27 14:11:48 +00:00
|
|
|
|
2021-04-26 15:57:47 +00:00
|
|
|
/* Storage data cancelled (in bytes) */
|
2015-03-16 04:43:04 +00:00
|
|
|
unsigned long long io_cancelled_write_bytes;
|
2021-01-27 14:11:48 +00:00
|
|
|
|
2021-04-26 15:57:47 +00:00
|
|
|
/* Point in time of last io scan (in milliseconds elapsed since the Epoch) */
|
|
|
|
unsigned long long io_last_scan_time_ms;
|
2021-01-27 14:11:48 +00:00
|
|
|
|
2021-04-26 15:57:47 +00:00
|
|
|
/* Storage data read (in bytes per second) */
|
2015-03-16 04:43:04 +00:00
|
|
|
double io_rate_read_bps;
|
2021-04-26 15:57:47 +00:00
|
|
|
|
|
|
|
/* Storage data written (in bytes per second) */
|
2015-03-16 04:43:04 +00:00
|
|
|
double io_rate_write_bps;
|
2021-04-26 15:57:47 +00:00
|
|
|
|
2015-03-16 04:43:04 +00:00
|
|
|
#ifdef HAVE_OPENVZ
|
2020-09-30 21:46:52 +00:00
|
|
|
char* ctid;
|
|
|
|
pid_t vpid;
|
2015-03-16 04:43:04 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_VSERVER
|
|
|
|
unsigned int vxid;
|
|
|
|
#endif
|
|
|
|
char* cgroup;
|
|
|
|
unsigned int oom;
|
2017-12-04 02:15:29 +00:00
|
|
|
#ifdef HAVE_DELAYACCT
|
|
|
|
unsigned long long int delay_read_time;
|
|
|
|
unsigned long long cpu_delay_total;
|
|
|
|
unsigned long long blkio_delay_total;
|
|
|
|
unsigned long long swapin_delay_total;
|
|
|
|
float cpu_delay_percent;
|
|
|
|
float blkio_delay_percent;
|
|
|
|
float swapin_delay_percent;
|
|
|
|
#endif
|
2020-09-11 13:02:00 +00:00
|
|
|
unsigned long ctxt_total;
|
|
|
|
unsigned long ctxt_diff;
|
2020-10-31 22:28:02 +00:00
|
|
|
char* secattr;
|
2020-11-16 18:12:41 +00:00
|
|
|
unsigned long long int last_mlrs_calctime;
|
2021-08-06 06:45:30 +00:00
|
|
|
|
|
|
|
/* Autogroup scheduling (CFS) information */
|
|
|
|
long int autogroup_id;
|
|
|
|
int autogroup_nice;
|
2014-11-27 23:02:52 +00:00
|
|
|
} LinuxProcess;
|
|
|
|
|
2020-12-10 00:57:48 +00:00
|
|
|
extern int pageSize;
|
|
|
|
|
|
|
|
extern int pageSizeKB;
|
|
|
|
|
2020-12-15 18:44:52 +00:00
|
|
|
extern const ProcessFieldData Process_fields[LAST_PROCESSFIELD];
|
2015-03-15 23:29:13 +00:00
|
|
|
|
2020-10-13 12:35:30 +00:00
|
|
|
extern const ProcessClass LinuxProcess_class;
|
2015-04-01 02:23:10 +00:00
|
|
|
|
2020-10-21 19:26:05 +00:00
|
|
|
Process* LinuxProcess_new(const Settings* settings);
|
2015-02-20 16:52:10 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void Process_delete(Object* cast);
|
2014-11-27 23:02:52 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
IOPriority LinuxProcess_updateIOPriority(LinuxProcess* this);
|
2014-11-27 23:02:52 +00:00
|
|
|
|
2020-10-27 10:46:29 +00:00
|
|
|
bool LinuxProcess_setIOPriority(Process* this, Arg ioprio);
|
2014-11-27 23:02:52 +00:00
|
|
|
|
2021-08-06 06:45:30 +00:00
|
|
|
bool LinuxProcess_isAutogroupEnabled(void);
|
|
|
|
|
|
|
|
bool LinuxProcess_changeAutogroupPriorityBy(Process* this, Arg delta);
|
|
|
|
|
2020-10-07 17:02:15 +00:00
|
|
|
bool Process_isThread(const Process* this);
|
2015-03-16 04:43:04 +00:00
|
|
|
|
2014-11-27 23:02:52 +00:00
|
|
|
#endif
|