aboutsummaryrefslogtreecommitdiffstats
path: root/linux/LinuxProcess.c
diff options
context:
space:
mode:
Diffstat (limited to 'linux/LinuxProcess.c')
-rw-r--r--linux/LinuxProcess.c756
1 files changed, 149 insertions, 607 deletions
diff --git a/linux/LinuxProcess.c b/linux/LinuxProcess.c
index ce6d34d..75638e4 100644
--- a/linux/LinuxProcess.c
+++ b/linux/LinuxProcess.c
@@ -6,12 +6,11 @@ Released under the GNU GPLv2, see the COPYING file
in the source distribution for its full text.
*/
-#include "LinuxProcess.h"
+#include "linux/LinuxProcess.h"
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
-#include <string.h>
#include <syscall.h>
#include <unistd.h>
@@ -21,15 +20,13 @@ in the source distribution for its full text.
#include "ProvideCurses.h"
#include "RichString.h"
#include "XUtils.h"
+#include "linux/IOPriority.h"
/* semi-global */
int pageSize;
int pageSizeKB;
-/* Used to identify kernel threads in Comm and Exe columns */
-static const char *const kthreadID = "KTHREAD";
-
const ProcessFieldData Process_fields[LAST_PROCESSFIELD] = {
[0] = { .name = "", .title = NULL, .description = NULL, .flags = 0, },
[PID] = { .name = "PID", .title = "PID", .description = "Process/thread ID", .flags = 0, .pidColumn = true, },
@@ -38,34 +35,34 @@ const ProcessFieldData Process_fields[LAST_PROCESSFIELD] = {
[PPID] = { .name = "PPID", .title = "PPID", .description = "Parent process ID", .flags = 0, .pidColumn = true, },
[PGRP] = { .name = "PGRP", .title = "PGRP", .description = "Process group ID", .flags = 0, .pidColumn = true, },
[SESSION] = { .name = "SESSION", .title = "SID", .description = "Process's session ID", .flags = 0, .pidColumn = true, },
- [TTY_NR] = { .name = "TTY_NR", .title = "TTY ", .description = "Controlling terminal", .flags = 0, },
+ [TTY] = { .name = "TTY", .title = "TTY ", .description = "Controlling terminal", .flags = 0, },
[TPGID] = { .name = "TPGID", .title = "TPGID", .description = "Process ID of the fg process group of the controlling terminal", .flags = 0, .pidColumn = true, },
- [MINFLT] = { .name = "MINFLT", .title = " MINFLT ", .description = "Number of minor faults which have not required loading a memory page from disk", .flags = 0, },
- [CMINFLT] = { .name = "CMINFLT", .title = " CMINFLT ", .description = "Children processes' minor faults", .flags = 0, },
- [MAJFLT] = { .name = "MAJFLT", .title = " MAJFLT ", .description = "Number of major faults which have required loading a memory page from disk", .flags = 0, },
- [CMAJFLT] = { .name = "CMAJFLT", .title = " CMAJFLT ", .description = "Children processes' major faults", .flags = 0, },
- [UTIME] = { .name = "UTIME", .title = " UTIME+ ", .description = "User CPU time - time the process spent executing in user mode", .flags = 0, },
- [STIME] = { .name = "STIME", .title = " STIME+ ", .description = "System CPU time - time the kernel spent running system calls for this process", .flags = 0, },
- [CUTIME] = { .name = "CUTIME", .title = " CUTIME+ ", .description = "Children processes' user CPU time", .flags = 0, },
- [CSTIME] = { .name = "CSTIME", .title = " CSTIME+ ", .description = "Children processes' system CPU time", .flags = 0, },
+ [MINFLT] = { .name = "MINFLT", .title = " MINFLT ", .description = "Number of minor faults which have not required loading a memory page from disk", .flags = 0, .defaultSortDesc = true, },
+ [CMINFLT] = { .name = "CMINFLT", .title = " CMINFLT ", .description = "Children processes' minor faults", .flags = 0, .defaultSortDesc = true, },
+ [MAJFLT] = { .name = "MAJFLT", .title = " MAJFLT ", .description = "Number of major faults which have required loading a memory page from disk", .flags = 0, .defaultSortDesc = true, },
+ [CMAJFLT] = { .name = "CMAJFLT", .title = " CMAJFLT ", .description = "Children processes' major faults", .flags = 0, .defaultSortDesc = true, },
+ [UTIME] = { .name = "UTIME", .title = " UTIME+ ", .description = "User CPU time - time the process spent executing in user mode", .flags = 0, .defaultSortDesc = true, },
+ [STIME] = { .name = "STIME", .title = " STIME+ ", .description = "System CPU time - time the kernel spent running system calls for this process", .flags = 0, .defaultSortDesc = true, },
+ [CUTIME] = { .name = "CUTIME", .title = " CUTIME+ ", .description = "Children processes' user CPU time", .flags = 0, .defaultSortDesc = true, },
+ [CSTIME] = { .name = "CSTIME", .title = " CSTIME+ ", .description = "Children processes' system CPU time", .flags = 0, .defaultSortDesc = true, },
[PRIORITY] = { .name = "PRIORITY", .title = "PRI ", .description = "Kernel's internal priority for the process", .flags = 0, },
[NICE] = { .name = "NICE", .title = " NI ", .description = "Nice value (the higher the value, the more it lets other processes take priority)", .flags = 0, },
[STARTTIME] = { .name = "STARTTIME", .title = "START ", .description = "Time the process was started", .flags = 0, },
+ [ELAPSED] = { .name = "ELAPSED", .title = "ELAPSED ", .description = "Time since the process was started", .flags = 0, },
[PROCESSOR] = { .name = "PROCESSOR", .title = "CPU ", .description = "Id of the CPU the process last executed on", .flags = 0, },
- [M_VIRT] = { .name = "M_VIRT", .title = " VIRT ", .description = "Total program size in virtual memory", .flags = 0, },
- [M_RESIDENT] = { .name = "M_RESIDENT", .title = " RES ", .description = "Resident set size, size of the text and data sections, plus stack usage", .flags = 0, },
- [M_SHARE] = { .name = "M_SHARE", .title = " SHR ", .description = "Size of the process's shared pages", .flags = 0, },
- [M_TRS] = { .name = "M_TRS", .title = " CODE ", .description = "Size of the text segment of the process", .flags = 0, },
- [M_DRS] = { .name = "M_DRS", .title = " DATA ", .description = "Size of the data segment plus stack usage of the process", .flags = 0, },
- [M_LRS] = { .name = "M_LRS", .title = " LIB ", .description = "The library size of the process (calculated from memory maps)", .flags = PROCESS_FLAG_LINUX_LRS_FIX, },
- [M_DT] = { .name = "M_DT", .title = " DIRTY ", .description = "Size of the dirty pages of the process (unused since Linux 2.6; always 0)", .flags = 0, },
+ [M_VIRT] = { .name = "M_VIRT", .title = " VIRT ", .description = "Total program size in virtual memory", .flags = 0, .defaultSortDesc = true, },
+ [M_RESIDENT] = { .name = "M_RESIDENT", .title = " RES ", .description = "Resident set size, size of the text and data sections, plus stack usage", .flags = 0, .defaultSortDesc = true, },
+ [M_SHARE] = { .name = "M_SHARE", .title = " SHR ", .description = "Size of the process's shared pages", .flags = 0, .defaultSortDesc = true, },
+ [M_TRS] = { .name = "M_TRS", .title = " CODE ", .description = "Size of the text segment of the process", .flags = 0, .defaultSortDesc = true, },
+ [M_DRS] = { .name = "M_DRS", .title = " DATA ", .description = "Size of the data segment plus stack usage of the process", .flags = 0, .defaultSortDesc = true, },
+ [M_LRS] = { .name = "M_LRS", .title = " LIB ", .description = "The library size of the process (calculated from memory maps)", .flags = PROCESS_FLAG_LINUX_LRS_FIX, .defaultSortDesc = true, },
[ST_UID] = { .name = "ST_UID", .title = " UID ", .description = "User ID of the process owner", .flags = 0, },
- [PERCENT_CPU] = { .name = "PERCENT_CPU", .title = "CPU% ", .description = "Percentage of the CPU time the process used in the last sampling", .flags = 0, },
- [PERCENT_NORM_CPU] = { .name = "PERCENT_NORM_CPU", .title = "NCPU%", .description = "Normalized percentage of the CPU time the process used in the last sampling (normalized by cpu count)", .flags = 0, },
- [PERCENT_MEM] = { .name = "PERCENT_MEM", .title = "MEM% ", .description = "Percentage of the memory the process is using, based on resident memory size", .flags = 0, },
+ [PERCENT_CPU] = { .name = "PERCENT_CPU", .title = "CPU% ", .description = "Percentage of the CPU time the process used in the last sampling", .flags = 0, .defaultSortDesc = true, },
+ [PERCENT_NORM_CPU] = { .name = "PERCENT_NORM_CPU", .title = "NCPU%", .description = "Normalized percentage of the CPU time the process used in the last sampling (normalized by cpu count)", .flags = 0, .defaultSortDesc = true, },
+ [PERCENT_MEM] = { .name = "PERCENT_MEM", .title = "MEM% ", .description = "Percentage of the memory the process is using, based on resident memory size", .flags = 0, .defaultSortDesc = true, },
[USER] = { .name = "USER", .title = "USER ", .description = "Username of the process owner (or user ID if name cannot be determined)", .flags = 0, },
- [TIME] = { .name = "TIME", .title = " TIME+ ", .description = "Total time the process has spent in user and system time", .flags = 0, },
- [NLWP] = { .name = "NLWP", .title = "NLWP ", .description = "Number of threads in the process", .flags = 0, },
+ [TIME] = { .name = "TIME", .title = " TIME+ ", .description = "Total time the process has spent in user and system time", .flags = 0, .defaultSortDesc = true, },
+ [NLWP] = { .name = "NLWP", .title = "NLWP ", .description = "Number of threads in the process", .flags = 0, .defaultSortDesc = true, },
[TGID] = { .name = "TGID", .title = "TGID", .description = "Thread group ID (i.e. process ID)", .flags = 0, .pidColumn = true, },
#ifdef HAVE_OPENVZ
[CTID] = { .name = "CTID", .title = " CTID ", .description = "OpenVZ container ID (a.k.a. virtual environment ID)", .flags = PROCESS_FLAG_LINUX_OPENVZ, },
@@ -74,45 +71,36 @@ const ProcessFieldData Process_fields[LAST_PROCESSFIELD] = {
#ifdef HAVE_VSERVER
[VXID] = { .name = "VXID", .title = " VXID ", .description = "VServer process ID", .flags = PROCESS_FLAG_LINUX_VSERVER, },
#endif
- [RCHAR] = { .name = "RCHAR", .title = " RD_CHAR ", .description = "Number of bytes the process has read", .flags = PROCESS_FLAG_IO, },
- [WCHAR] = { .name = "WCHAR", .title = " WR_CHAR ", .description = "Number of bytes the process has written", .flags = PROCESS_FLAG_IO, },
- [SYSCR] = { .name = "SYSCR", .title = " RD_SYSC ", .description = "Number of read(2) syscalls for the process", .flags = PROCESS_FLAG_IO, },
- [SYSCW] = { .name = "SYSCW", .title = " WR_SYSC ", .description = "Number of write(2) syscalls for the process", .flags = PROCESS_FLAG_IO, },
- [RBYTES] = { .name = "RBYTES", .title = " IO_RBYTES ", .description = "Bytes of read(2) I/O for the process", .flags = PROCESS_FLAG_IO, },
- [WBYTES] = { .name = "WBYTES", .title = " IO_WBYTES ", .description = "Bytes of write(2) I/O for the process", .flags = PROCESS_FLAG_IO, },
- [CNCLWB] = { .name = "CNCLWB", .title = " IO_CANCEL ", .description = "Bytes of cancelled write(2) I/O", .flags = PROCESS_FLAG_IO, },
- [IO_READ_RATE] = { .name = "IO_READ_RATE", .title = " DISK READ ", .description = "The I/O rate of read(2) in bytes per second for the process", .flags = PROCESS_FLAG_IO, },
- [IO_WRITE_RATE] = { .name = "IO_WRITE_RATE", .title = " DISK WRITE ", .description = "The I/O rate of write(2) in bytes per second for the process", .flags = PROCESS_FLAG_IO, },
- [IO_RATE] = { .name = "IO_RATE", .title = " DISK R/W ", .description = "Total I/O rate in bytes per second", .flags = PROCESS_FLAG_IO, },
+ [RCHAR] = { .name = "RCHAR", .title = "RCHAR ", .description = "Number of bytes the process has read", .flags = PROCESS_FLAG_IO, .defaultSortDesc = true, },
+ [WCHAR] = { .name = "WCHAR", .title = "WCHAR ", .description = "Number of bytes the process has written", .flags = PROCESS_FLAG_IO, .defaultSortDesc = true, },
+ [SYSCR] = { .name = "SYSCR", .title = " READ_SYSC ", .description = "Number of read(2) syscalls for the process", .flags = PROCESS_FLAG_IO, .defaultSortDesc = true, },
+ [SYSCW] = { .name = "SYSCW", .title = " WRITE_SYSC ", .description = "Number of write(2) syscalls for the process", .flags = PROCESS_FLAG_IO, .defaultSortDesc = true, },
+ [RBYTES] = { .name = "RBYTES", .title = " IO_R ", .description = "Bytes of read(2) I/O for the process", .flags = PROCESS_FLAG_IO, .defaultSortDesc = true, },
+ [WBYTES] = { .name = "WBYTES", .title = " IO_W ", .description = "Bytes of write(2) I/O for the process", .flags = PROCESS_FLAG_IO, .defaultSortDesc = true, },
+ [CNCLWB] = { .name = "CNCLWB", .title = " IO_C ", .description = "Bytes of cancelled write(2) I/O", .flags = PROCESS_FLAG_IO, .defaultSortDesc = true, },
+ [IO_READ_RATE] = { .name = "IO_READ_RATE", .title = " DISK READ ", .description = "The I/O rate of read(2) in bytes per second for the process", .flags = PROCESS_FLAG_IO, .defaultSortDesc = true, },
+ [IO_WRITE_RATE] = { .name = "IO_WRITE_RATE", .title = " DISK WRITE ", .description = "The I/O rate of write(2) in bytes per second for the process", .flags = PROCESS_FLAG_IO, .defaultSortDesc = true, },
+ [IO_RATE] = { .name = "IO_RATE", .title = " DISK R/W ", .description = "Total I/O rate in bytes per second", .flags = PROCESS_FLAG_IO, .defaultSortDesc = true, },
[CGROUP] = { .name = "CGROUP", .title = " CGROUP ", .description = "Which cgroup the process is in", .flags = PROCESS_FLAG_LINUX_CGROUP, },
- [OOM] = { .name = "OOM", .title = " OOM ", .description = "OOM (Out-of-Memory) killer score", .flags = PROCESS_FLAG_LINUX_OOM, },
+ [OOM] = { .name = "OOM", .title = " OOM ", .description = "OOM (Out-of-Memory) killer score", .flags = PROCESS_FLAG_LINUX_OOM, .defaultSortDesc = true, },
[IO_PRIORITY] = { .name = "IO_PRIORITY", .title = "IO ", .description = "I/O priority", .flags = PROCESS_FLAG_LINUX_IOPRIO, },
#ifdef HAVE_DELAYACCT
- [PERCENT_CPU_DELAY] = { .name = "PERCENT_CPU_DELAY", .title = "CPUD% ", .description = "CPU delay %", .flags = PROCESS_FLAG_LINUX_DELAYACCT, },
- [PERCENT_IO_DELAY] = { .name = "PERCENT_IO_DELAY", .title = "IOD% ", .description = "Block I/O delay %", .flags = PROCESS_FLAG_LINUX_DELAYACCT, },
- [PERCENT_SWAP_DELAY] = { .name = "PERCENT_SWAP_DELAY", .title = "SWAPD% ", .description = "Swapin delay %", .flags = PROCESS_FLAG_LINUX_DELAYACCT, },
+ [PERCENT_CPU_DELAY] = { .name = "PERCENT_CPU_DELAY", .title = "CPUD%", .description = "CPU delay %", .flags = PROCESS_FLAG_LINUX_DELAYACCT, .defaultSortDesc = true, },
+ [PERCENT_IO_DELAY] = { .name = "PERCENT_IO_DELAY", .title = "IOD% ", .description = "Block I/O delay %", .flags = PROCESS_FLAG_LINUX_DELAYACCT, .defaultSortDesc = true, },
+ [PERCENT_SWAP_DELAY] = { .name = "PERCENT_SWAP_DELAY", .title = "SWPD%", .description = "Swapin delay %", .flags = PROCESS_FLAG_LINUX_DELAYACCT, .defaultSortDesc = true, },
#endif
- [M_PSS] = { .name = "M_PSS", .title = " PSS ", .description = "proportional set size, same as M_RESIDENT but each page is divided by the number of processes sharing it.", .flags = PROCESS_FLAG_LINUX_SMAPS, },
- [M_SWAP] = { .name = "M_SWAP", .title = " SWAP ", .description = "Size of the process's swapped pages", .flags = PROCESS_FLAG_LINUX_SMAPS, },
- [M_PSSWP] = { .name = "M_PSSWP", .title = " PSSWP ", .description = "shows proportional swap share of this mapping, Unlike \"Swap\", this does not take into account swapped out page of underlying shmem objects.", .flags = PROCESS_FLAG_LINUX_SMAPS, },
- [CTXT] = { .name = "CTXT", .title = " CTXT ", .description = "Context switches (incremental sum of voluntary_ctxt_switches and nonvoluntary_ctxt_switches)", .flags = PROCESS_FLAG_LINUX_CTXT, },
+ [M_PSS] = { .name = "M_PSS", .title = " PSS ", .description = "proportional set size, same as M_RESIDENT but each page is divided by the number of processes sharing it", .flags = PROCESS_FLAG_LINUX_SMAPS, .defaultSortDesc = true, },
+ [M_SWAP] = { .name = "M_SWAP", .title = " SWAP ", .description = "Size of the process's swapped pages", .flags = PROCESS_FLAG_LINUX_SMAPS, .defaultSortDesc = true, },
+ [M_PSSWP] = { .name = "M_PSSWP", .title = " PSSWP ", .description = "shows proportional swap share of this mapping, unlike \"Swap\", this does not take into account swapped out page of underlying shmem objects", .flags = PROCESS_FLAG_LINUX_SMAPS, .defaultSortDesc = true, },
+ [CTXT] = { .name = "CTXT", .title = " CTXT ", .description = "Context switches (incremental sum of voluntary_ctxt_switches and nonvoluntary_ctxt_switches)", .flags = PROCESS_FLAG_LINUX_CTXT, .defaultSortDesc = true, },
[SECATTR] = { .name = "SECATTR", .title = " Security Attribute ", .description = "Security attribute of the process (e.g. SELinux or AppArmor)", .flags = PROCESS_FLAG_LINUX_SECATTR, },
[PROC_COMM] = { .name = "COMM", .title = "COMM ", .description = "comm string of the process from /proc/[pid]/comm", .flags = 0, },
[PROC_EXE] = { .name = "EXE", .title = "EXE ", .description = "Basename of exe of the process from /proc/[pid]/exe", .flags = 0, },
- [CWD] = { .name ="CWD", .title = "CWD ", .description = "The current working directory of the process", .flags = PROCESS_FLAG_LINUX_CWD, },
+ [CWD] = { .name = "CWD", .title = "CWD ", .description = "The current working directory of the process", .flags = PROCESS_FLAG_CWD, },
+ [AUTOGROUP_ID] = { .name = "AUTOGROUP_ID", .title = "AGRP", .description = "The autogroup identifier of the process", .flags = PROCESS_FLAG_LINUX_AUTOGROUP, },
+ [AUTOGROUP_NICE] = { .name = "AUTOGROUP_NICE", .title = " ANI", .description = "Nice value (the higher the value, the more other processes take priority) associated with the process autogroup", .flags = PROCESS_FLAG_LINUX_AUTOGROUP, },
};
-/* This function returns the string displayed in Command column, so that sorting
- * happens on what is displayed - whether comm, full path, basename, etc.. So
- * this follows LinuxProcess_writeField(COMM) and LinuxProcess_writeCommand */
-static const char* LinuxProcess_getCommandStr(const Process *this) {
- const LinuxProcess *lp = (const LinuxProcess *)this;
- if ((Process_isUserlandThread(this) && this->settings->showThreadNames) || !lp->mergedCommand.str) {
- return this->comm;
- }
- return lp->mergedCommand.str;
-}
-
Process* LinuxProcess_new(const Settings* settings) {
LinuxProcess* this = xCalloc(1, sizeof(LinuxProcess));
Object_setClass(this, Class(LinuxProcess));
@@ -127,12 +115,7 @@ void Process_delete(Object* cast) {
#ifdef HAVE_OPENVZ
free(this->ctid);
#endif
- free(this->cwd);
free(this->secattr);
- free(this->ttyDevice);
- free(this->procExe);
- free(this->procComm);
- free(this->mergedCommand.str);
free(this);
}
@@ -175,429 +158,35 @@ bool LinuxProcess_setIOPriority(Process* this, Arg ioprio) {
return (LinuxProcess_updateIOPriority((LinuxProcess*)this) == ioprio.i);
}
-#ifdef HAVE_DELAYACCT
-static void LinuxProcess_printDelay(float delay_percent, char* buffer, int n) {
- if (isnan(delay_percent)) {
- xSnprintf(buffer, n, " N/A ");
- } else {
- xSnprintf(buffer, n, "%4.1f ", delay_percent);
- }
-}
-#endif
-
-/*
-TASK_COMM_LEN is defined to be 16 for /proc/[pid]/comm in man proc(5), but it is
-not available in an userspace header - so define it. Note: when colorizing a
-basename with the comm prefix, the entire basename (not just the comm prefix) is
-colorized for better readability, and it is implicit that only upto
-(TASK_COMM_LEN - 1) could be comm
-*/
-#define TASK_COMM_LEN 16
-
-static bool findCommInCmdline(const char *comm, const char *cmdline, int cmdlineBasenameOffset, int *pCommStart, int *pCommEnd) {
- /* Try to find procComm in tokenized cmdline - this might in rare cases
- * mis-identify a string or fail, if comm or cmdline had been unsuitably
- * modified by the process */
- const char *tokenBase;
- size_t tokenLen;
- const size_t commLen = strlen(comm);
-
- for (const char *token = cmdline + cmdlineBasenameOffset; *token; ) {
- for (tokenBase = token; *token && *token != '\n'; ++token) {
- if (*token == '/') {
- tokenBase = token + 1;
- }
- }
- tokenLen = token - tokenBase;
-
- if ((tokenLen == commLen || (tokenLen > commLen && commLen == (TASK_COMM_LEN - 1))) &&
- strncmp(tokenBase, comm, commLen) == 0) {
- *pCommStart = tokenBase - cmdline;
- *pCommEnd = token - cmdline;
- return true;
- }
- if (*token) {
- do {
- ++token;
- } while ('\n' == *token);
- }
- }
- return false;
-}
-
-static int matchCmdlinePrefixWithExeSuffix(const char *cmdline, int cmdlineBaseOffset, const char *exe, int exeBaseOffset, int exeBaseLen) {
- int matchLen; /* matching length to be returned */
- char delim; /* delimiter following basename */
-
- /* cmdline prefix is an absolute path: it must match whole exe. */
- if (cmdline[0] == '/') {
- matchLen = exeBaseLen + exeBaseOffset;
- if (strncmp(cmdline, exe, matchLen) == 0) {
- delim = cmdline[matchLen];
- if (delim == 0 || delim == '\n' || delim == ' ') {
- return matchLen;
- }
- }
- return 0;
- }
-
- /* cmdline prefix is a relative path: We need to first match the basename at
- * cmdlineBaseOffset and then reverse match the cmdline prefix with the exe
- * suffix. But there is a catch: Some processes modify their cmdline in ways
- * that make htop's identification of the basename in cmdline unreliable.
- * For e.g. /usr/libexec/gdm-session-worker modifies its cmdline to
- * "gdm-session-worker [pam/gdm-autologin]" and htop ends up with
- * procCmdlineBasenameOffset at "gdm-autologin]". This issue could arise with
- * chrome as well as it stores in cmdline its concatenated argument vector,
- * without NUL delimiter between the arguments (which may contain a '/')
- *
- * So if needed, we adjust cmdlineBaseOffset to the previous (if any)
- * component of the cmdline relative path, and retry the procedure. */
- bool delimFound; /* if valid basename delimiter found */
- do {
- /* match basename */
- matchLen = exeBaseLen + cmdlineBaseOffset;
- if (cmdlineBaseOffset < exeBaseOffset &&
- strncmp(cmdline + cmdlineBaseOffset, exe + exeBaseOffset, exeBaseLen) == 0) {
- delim = cmdline[matchLen];
- if (delim == 0 || delim == '\n' || delim == ' ') {
- int i, j;
- /* reverse match the cmdline prefix and exe suffix */
- for (i = cmdlineBaseOffset - 1, j = exeBaseOffset - 1;
- i >= 0 && cmdline[i] == exe[j]; --i, --j)
- ;
- /* full match, with exe suffix being a valid relative path */
- if (i < 0 && exe[j] == '/') {
- return matchLen;
- }
- }
- }
- /* Try to find the previous potential cmdlineBaseOffset - it would be
- * preceded by '/' or nothing, and delimited by ' ' or '\n' */
- for (delimFound = false, cmdlineBaseOffset -= 2; cmdlineBaseOffset > 0; --cmdlineBaseOffset) {
- if (delimFound) {
- if (cmdline[cmdlineBaseOffset - 1] == '/') {
- break;
- }
- } else if (cmdline[cmdlineBaseOffset] == ' ' || cmdline[cmdlineBaseOffset] == '\n') {
- delimFound = true;
- }
- }
- } while (delimFound);
-
- return 0;
-}
-
-/* stpcpy, but also converts newlines to spaces */
-static inline char *stpcpyWithNewlineConversion(char *dstStr, const char *srcStr) {
- for (; *srcStr; ++srcStr) {
- *dstStr++ = (*srcStr == '\n') ? ' ' : *srcStr;
- }
- *dstStr = 0;
- return dstStr;
+bool LinuxProcess_isAutogroupEnabled(void) {
+ char buf[16];
+ if (xReadfile(PROCDIR "/sys/kernel/sched_autogroup_enabled", buf, sizeof(buf)) < 0)
+ return false;
+ return buf[0] == '1';
}
-/*
-This function makes the merged Command string. It also stores the offsets of the
-basename, comm w.r.t the merged Command string - these offsets will be used by
-LinuxProcess_writeCommand() for coloring. The merged Command string is also
-returned by LinuxProcess_getCommandStr() for searching, sorting and filtering.
-*/
-void LinuxProcess_makeCommandStr(Process* this) {
- LinuxProcess *lp = (LinuxProcess *)this;
- LinuxProcessMergedCommand *mc = &lp->mergedCommand;
-
- bool showMergedCommand = this->settings->showMergedCommand;
- bool showProgramPath = this->settings->showProgramPath;
- bool searchCommInCmdline = this->settings->findCommInCmdline;
- bool stripExeFromCmdline = this->settings->stripExeFromCmdline;
-
- /* lp->mergedCommand.str needs updating only if its state or contents changed.
- * Its content is based on the fields cmdline, comm, and exe. */
- if (
- mc->prevMergeSet == showMergedCommand &&
- mc->prevPathSet == showProgramPath &&
- mc->prevCommSet == searchCommInCmdline &&
- mc->prevCmdlineSet == stripExeFromCmdline &&
- !mc->cmdlineChanged &&
- !mc->commChanged &&
- !mc->exeChanged
- ) {
- return;
- }
-
- /* The field separtor "│" has been chosen such that it will not match any
- * valid string used for searching or filtering */
- const char *SEPARATOR = CRT_treeStr[TREE_STR_VERT];
- const int SEPARATOR_LEN = strlen(SEPARATOR);
-
- /* Check for any changed fields since we last built this string */
- if (mc->cmdlineChanged || mc->commChanged || mc->exeChanged) {
- free(mc->str);
- /* Accommodate the column text, two field separators and terminating NUL */
- mc->str = xCalloc(1, mc->maxLen + 2*SEPARATOR_LEN + 1);
- }
-
- /* Preserve the settings used in this run */
- mc->prevMergeSet = showMergedCommand;
- mc->prevPathSet = showProgramPath;
- mc->prevCommSet = searchCommInCmdline;
- mc->prevCmdlineSet = stripExeFromCmdline;
-
- /* Mark everything as unchanged */
- mc->cmdlineChanged = false;
- mc->commChanged = false;
- mc->exeChanged = false;
-
- /* Clear any separators */
- mc->sep1 = 0;
- mc->sep2 = 0;
-
- /* Clear any highlighting locations */
- mc->baseStart = 0;
- mc->baseEnd = 0;
- mc->commStart = 0;
- mc->commEnd = 0;
-
- const char *cmdline = this->comm;
- const char *procExe = lp->procExe;
- const char *procComm = lp->procComm;
-
- char *strStart = mc->str;
- char *str = strStart;
-
- int cmdlineBasenameOffset = lp->procCmdlineBasenameOffset;
- int cmdlineBasenameEnd = lp->procCmdlineBasenameEnd;
-
- if (!cmdline) {
- cmdlineBasenameOffset = 0;
- cmdlineBasenameEnd = 0;
- cmdline = "(zombie)";
- }
-
- assert(cmdlineBasenameOffset >= 0);
- assert(cmdlineBasenameOffset <= (int)strlen(cmdline));
-
- if (!showMergedCommand || !procExe || !procComm) { /* fall back to cmdline */
- if (showMergedCommand && !procExe && procComm && strlen(procComm)) { /* Prefix column with comm */
- if (strncmp(cmdline + cmdlineBasenameOffset, procComm, MINIMUM(TASK_COMM_LEN - 1, strlen(procComm))) != 0) {
- mc->commStart = 0;
- mc->commEnd = strlen(procComm);
-
- str = stpcpy(str, procComm);
-
- mc->sep1 = str - strStart;
- str = stpcpy(str, SEPARATOR);
- }
- }
-
- if (showProgramPath) {
- (void) stpcpyWithNewlineConversion(str, cmdline);
- mc->baseStart = cmdlineBasenameOffset;
- mc->baseEnd = cmdlineBasenameEnd;
- } else {
- (void) stpcpyWithNewlineConversion(str, cmdline + cmdlineBasenameOffset);
- mc->baseStart = 0;
- mc->baseEnd = cmdlineBasenameEnd - cmdlineBasenameOffset;
- }
-
- if (mc->sep1) {
- mc->baseStart += str - strStart - SEPARATOR_LEN + 1;
- mc->baseEnd += str - strStart - SEPARATOR_LEN + 1;
- }
-
- return;
- }
-
- int exeLen = lp->procExeLen;
- int exeBasenameOffset = lp->procExeBasenameOffset;
- int exeBasenameLen = exeLen - exeBasenameOffset;
-
- assert(exeBasenameOffset >= 0);
- assert(exeBasenameOffset <= (int)strlen(procExe));
-
- /* Start with copying exe */
- if (showProgramPath) {
- str = stpcpy(str, procExe);
- mc->baseStart = exeBasenameOffset;
- mc->baseEnd = exeLen;
- } else {
- str = stpcpy(str, procExe + exeBasenameOffset);
- mc->baseStart = 0;
- mc->baseEnd = exeBasenameLen;
- }
-
- mc->sep1 = 0;
- mc->sep2 = 0;
-
- int commStart = 0;
- int commEnd = 0;
- bool commInCmdline = false;
-
- /* Try to match procComm with procExe's basename: This is reliable (predictable) */
- if (strncmp(procExe + exeBasenameOffset, procComm, TASK_COMM_LEN - 1) == 0) {
- commStart = mc->baseStart;
- commEnd = mc->baseEnd;
- } else if (searchCommInCmdline) {
- /* commStart/commEnd will be adjusted later along with cmdline */
- commInCmdline = findCommInCmdline(procComm, cmdline, cmdlineBasenameOffset, &commStart, &commEnd);
- }
-
- int matchLen = matchCmdlinePrefixWithExeSuffix(cmdline, cmdlineBasenameOffset, procExe, exeBasenameOffset, exeBasenameLen);
-
- /* Note: commStart, commEnd are offsets into RichString. But the multibyte
- * separator (with size SEPARATOR_LEN) has size 1 in RichString. The offset
- * adjustments below reflect this. */
- if (commEnd) {
- mc->unmatchedExe = !matchLen;
-
- if (matchLen) {
- /* strip the matched exe prefix */
- cmdline += matchLen;
-
- if (commInCmdline) {
- commStart += str - strStart - matchLen;
- commEnd += str - strStart - matchLen;
- }
- } else {
- /* cmdline will be a separate field */
- mc->sep1 = str - strStart;
- str = stpcpy(str, SEPARATOR);
-
- if (commInCmdline) {
- commStart += str - strStart - SEPARATOR_LEN + 1;
- commEnd += str - strStart - SEPARATOR_LEN + 1;
- }
- }
-
- mc->separateComm = false; /* procComm merged */
+bool LinuxProcess_changeAutogroupPriorityBy(Process* this, Arg delta) {
+ char buffer[256];
+ xSnprintf(buffer, sizeof(buffer), PROCDIR "/%d/autogroup", this->pid);
+
+ FILE* file = fopen(buffer, "r+");
+ if (!file)
+ return false;
+
+ long int identity;
+ int nice;
+ int ok = fscanf(file, "/autogroup-%ld nice %d", &identity, &nice);
+ bool success;
+ if (ok == 2) {
+ rewind(file);
+ xSnprintf(buffer, sizeof(buffer), "%d", nice + delta.i);
+ success = fputs(buffer, file) > 0;
} else {
- mc->sep1 = str - strStart;
- str = stpcpy(str, SEPARATOR);
-
- commStart = str - strStart - SEPARATOR_LEN + 1;
- str = stpcpy(str, procComm);
- commEnd = str - strStart - SEPARATOR_LEN + 1; /* or commStart + strlen(procComm) */
-
- mc->unmatchedExe = !matchLen;
-
- if (matchLen) {
- if (stripExeFromCmdline) {
- cmdline += matchLen;
- }
- }
-
- if (*cmdline) {
- mc->sep2 = str - strStart - SEPARATOR_LEN + 1;
- str = stpcpy(str, SEPARATOR);
- }
-
- mc->separateComm = true; /* procComm a separate field */
- }
-
- /* Display cmdline if it hasn't been consumed by procExe */
- if (*cmdline) {
- (void) stpcpyWithNewlineConversion(str, cmdline);
- }
-
- mc->commStart = commStart;
- mc->commEnd = commEnd;
-}
-
-static void LinuxProcess_writeCommand(const Process* this, int attr, int baseAttr, RichString* str) {
- const LinuxProcess *lp = (const LinuxProcess *)this;
- const LinuxProcessMergedCommand *mc = &lp->mergedCommand;
-
- int strStart = RichString_size(str);
-
- int baseStart = strStart + lp->mergedCommand.baseStart;
- int baseEnd = strStart + lp->mergedCommand.baseEnd;
- int commStart = strStart + lp->mergedCommand.commStart;
- int commEnd = strStart + lp->mergedCommand.commEnd;
-
- int commAttr = CRT_colors[Process_isUserlandThread(this) ? PROCESS_THREAD_COMM : PROCESS_COMM];
-
- bool highlightBaseName = this->settings->highlightBaseName;
-
- if(lp->procExeDeleted)
- baseAttr = CRT_colors[FAILED_READ];
-
- RichString_appendWide(str, attr, lp->mergedCommand.str);
-
- if (lp->mergedCommand.commEnd) {
- if (!lp->mergedCommand.separateComm && commStart == baseStart && highlightBaseName) {
- /* If it was matched with procExe's basename, make it bold if needed */
- if (commEnd > baseEnd) {
- RichString_setAttrn(str, A_BOLD | baseAttr, baseStart, baseEnd - baseStart);
- RichString_setAttrn(str, A_BOLD | commAttr, baseEnd, commEnd - baseEnd);
- } else if (commEnd < baseEnd) {
- RichString_setAttrn(str, A_BOLD | commAttr, commStart, commEnd - commStart);
- RichString_setAttrn(str, A_BOLD | baseAttr, commEnd, baseEnd - commEnd);
- } else {
- // Actually should be highlighted commAttr, but marked baseAttr to reduce visual noise
- RichString_setAttrn(str, A_BOLD | baseAttr, commStart, commEnd - commStart);
- }
-
- baseStart = baseEnd;
- } else {
- RichString_setAttrn(str, commAttr, commStart, commEnd - commStart);
- }
+ success = false;
}
- if (baseStart < baseEnd && highlightBaseName) {
- RichString_setAttrn(str, baseAttr, baseStart, baseEnd - baseStart);
- }
-
- if (mc->sep1)
- RichString_setAttrn(str, CRT_colors[FAILED_READ], strStart + mc->sep1, 1);
- if (mc->sep2)
- RichString_setAttrn(str, CRT_colors[FAILED_READ], strStart + mc->sep2, 1);
-}
-
-static void LinuxProcess_writeCommandField(const Process *this, RichString *str, char *buffer, int n, int attr) {
- /* This code is from Process_writeField for COMM, but we invoke
- * LinuxProcess_writeCommand to display
- * /proc/pid/exe (or its basename)│/proc/pid/comm│/proc/pid/cmdline */
- int baseattr = CRT_colors[PROCESS_BASENAME];
- if (this->settings->highlightThreads && Process_isThread(this)) {
- attr = CRT_colors[PROCESS_THREAD];
- baseattr = CRT_colors[PROCESS_THREAD_BASENAME];
- }
- if (!this->settings->treeView || this->indent == 0) {
- LinuxProcess_writeCommand(this, attr, baseattr, str);
- } else {
- char* buf = buffer;
- int maxIndent = 0;
- bool lastItem = (this->indent < 0);
- int indent = (this->indent < 0 ? -this->indent : this->indent);
- int vertLen = strlen(CRT_treeStr[TREE_STR_VERT]);
-
- for (int i = 0; i < 32; i++) {
- if (indent & (1U << i)) {
- maxIndent = i+1;
- }
- }
- for (int i = 0; i < maxIndent - 1; i++) {
- if (indent & (1 << i)) {
- if (buf - buffer + (vertLen + 3) > n) {
- break;
- }
- buf = stpcpy(buf, CRT_treeStr[TREE_STR_VERT]);
- buf = stpcpy(buf, " ");
- } else {
- if (buf - buffer + 4 > n) {
- break;
- }
- buf = stpcpy(buf, " ");
- }
- }
-
- n -= (buf - buffer);
- const char* draw = CRT_treeStr[lastItem ? TREE_STR_BEND : TREE_STR_RTEE];
- xSnprintf(buf, n, "%s%s ", draw, this->showChildren ? CRT_treeStr[TREE_STR_SHUT] : CRT_treeStr[TREE_STR_OPEN] );
- RichString_appendWide(str, CRT_colors[PROCESS_TREE], buffer);
- LinuxProcess_writeCommand(this, attr, baseattr, str);
- }
+ fclose(file);
+ return success;
}
static void LinuxProcess_writeField(const Process* this, RichString* str, ProcessField field) {
@@ -607,48 +196,38 @@ static void LinuxProcess_writeField(const Process* this, RichString* str, Proces
int attr = CRT_colors[DEFAULT_COLOR];
size_t n = sizeof(buffer) - 1;
switch (field) {
- case TTY_NR: {
- if (lp->ttyDevice) {
- xSnprintf(buffer, n, "%-9s", lp->ttyDevice + 5 /* skip "/dev/" */);
- } else {
- attr = CRT_colors[PROCESS_SHADOW];
- xSnprintf(buffer, n, "? ");
- }
- break;
- }
- case CMINFLT: Process_colorNumber(str, lp->cminflt, coloring); return;
- case CMAJFLT: Process_colorNumber(str, lp->cmajflt, coloring); return;
- case M_DRS: Process_humanNumber(str, lp->m_drs * pageSizeKB, coloring); return;
- case M_DT: Process_humanNumber(str, lp->m_dt * pageSizeKB, coloring); return;
+ case CMINFLT: Process_printCount(str, lp->cminflt, coloring); return;
+ case CMAJFLT: Process_printCount(str, lp->cmajflt, coloring); return;
+ case M_DRS: Process_printBytes(str, lp->m_drs * pageSize, coloring); return;
case M_LRS:
if (lp->m_lrs) {
- Process_humanNumber(str, lp->m_lrs * pageSizeKB, coloring);
+ Process_printBytes(str, lp->m_lrs * pageSize, coloring);
return;
}
attr = CRT_colors[PROCESS_SHADOW];
xSnprintf(buffer, n, " N/A ");
break;
- case M_TRS: Process_humanNumber(str, lp->m_trs * pageSizeKB, coloring); return;
- case M_SHARE: Process_humanNumber(str, lp->m_share * pageSizeKB, coloring); return;
- case M_PSS: Process_humanNumber(str, lp->m_pss, coloring); return;
- case M_SWAP: Process_humanNumber(str, lp->m_swap, coloring); return;
- case M_PSSWP: Process_humanNumber(str, lp->m_psswp, coloring); return;
- case UTIME: Process_printTime(str, lp->utime); return;
- case STIME: Process_printTime(str, lp->stime); return;
- case CUTIME: Process_printTime(str, lp->cutime); return;
- case CSTIME: Process_printTime(str, lp->cstime); return;
- case RCHAR: Process_colorNumber(str, lp->io_rchar, coloring); return;
- case WCHAR: Process_colorNumber(str, lp->io_wchar, coloring); return;
- case SYSCR: Process_colorNumber(str, lp->io_syscr, coloring); return;
- case SYSCW: Process_colorNumber(str, lp->io_syscw, coloring); return;
- case RBYTES: Process_colorNumber(str, lp->io_read_bytes, coloring); return;
- case WBYTES: Process_colorNumber(str, lp->io_write_bytes, coloring); return;
- case CNCLWB: Process_colorNumber(str, lp->io_cancelled_write_bytes, coloring); return;
- case IO_READ_RATE: Process_outputRate(str, buffer, n, lp->io_rate_read_bps, coloring); return;
- case IO_WRITE_RATE: Process_outputRate(str, buffer, n, lp->io_rate_write_bps, coloring); return;
+ case M_TRS: Process_printBytes(str, lp->m_trs * pageSize, coloring); return;
+ case M_SHARE: Process_printBytes(str, lp->m_share * pageSize, coloring); return;
+ case M_PSS: Process_printKBytes(str, lp->m_pss, coloring); return;
+ case M_SWAP: Process_printKBytes(str, lp->m_swap, coloring); return;
+ case M_PSSWP: Process_printKBytes(str, lp->m_psswp, coloring); return;
+ case UTIME: Process_printTime(str, lp->utime, coloring); return;
+ case STIME: Process_printTime(str, lp->stime, coloring); return;
+ case CUTIME: Process_printTime(str, lp->cutime, coloring); return;
+ case CSTIME: Process_printTime(str, lp->cstime, coloring); return;
+ case RCHAR: Process_printBytes(str, lp->io_rchar, coloring); return;
+ case WCHAR: Process_printBytes(str, lp->io_wchar, coloring); return;
+ case SYSCR: Process_printCount(str, lp->io_syscr, coloring); return;
+ case SYSCW: Process_printCount(str, lp->io_syscw, coloring); return;
+ case RBYTES: Process_printBytes(str, lp->io_read_bytes, coloring); return;
+ case WBYTES: Process_printBytes(str, lp->io_write_bytes, coloring); return;
+ case CNCLWB: Process_printBytes(str, lp->io_cancelled_write_bytes, coloring); return;
+ case IO_READ_RATE: Process_printRate(str, lp->io_rate_read_bps, coloring); return;
+ case IO_WRITE_RATE: Process_printRate(str, lp->io_rate_write_bps, coloring); return;
case IO_RATE: {
- double totalRate = NAN;
+ double totalRate;
if (!isnan(lp->io_rate_read_bps) && !isnan(lp->io_rate_write_bps))
totalRate = lp->io_rate_read_bps + lp->io_rate_write_bps;
else if (!isnan(lp->io_rate_read_bps))
@@ -657,7 +236,8 @@ static void LinuxProcess_writeField(const Process* this, RichString* str, Proces
totalRate = lp->io_rate_write_bps;
else
totalRate = NAN;
- Process_outputRate(str, buffer, n, totalRate, coloring); return;
+ Process_printRate(str, totalRate, coloring);
+ return;
}
#ifdef HAVE_OPENVZ
case CTID: xSnprintf(buffer, n, "%-8s ", lp->ctid ? lp->ctid : ""); break;
@@ -687,9 +267,9 @@ static void LinuxProcess_writeField(const Process* this, RichString* str, Proces
break;
}
#ifdef HAVE_DELAYACCT
- case PERCENT_CPU_DELAY: LinuxProcess_printDelay(lp->cpu_delay_percent, buffer, n); break;
- case PERCENT_IO_DELAY: LinuxProcess_printDelay(lp->blkio_delay_percent, buffer, n); break;
- case PERCENT_SWAP_DELAY: LinuxProcess_printDelay(lp->swapin_delay_percent, buffer, n); break;
+ case PERCENT_CPU_DELAY: Process_printPercentage(lp->cpu_delay_percent, buffer, n, &attr); break;
+ case PERCENT_IO_DELAY: Process_printPercentage(lp->blkio_delay_percent, buffer, n, &attr); break;
+ case PERCENT_SWAP_DELAY: Process_printPercentage(lp->swapin_delay_percent, buffer, n, &attr); break;
#endif
case CTXT:
if (lp->ctxt_diff > 1000) {
@@ -698,60 +278,37 @@ static void LinuxProcess_writeField(const Process* this, RichString* str, Proces
xSnprintf(buffer, n, "%5lu ", lp->ctxt_diff);
break;
case SECATTR: snprintf(buffer, n, "%-30s ", lp->secattr ? lp->secattr : "?"); break;
- case COMM: {
- if ((Process_isUserlandThread(this) && this->settings->showThreadNames) || !lp->mergedCommand.str) {
- Process_writeField(this, str, field);
- } else {
- LinuxProcess_writeCommandField(this, str, buffer, n, attr);
- }
- return;
- }
- case PROC_COMM: {
- const char* procComm;
- if (lp->procComm) {
- attr = CRT_colors[Process_isUserlandThread(this) ? PROCESS_THREAD_COMM : PROCESS_COMM];
- procComm = lp->procComm;
+ case AUTOGROUP_ID:
+ if (lp->autogroup_id != -1) {
+ xSnprintf(buffer, n, "%4ld ", lp->autogroup_id);
} else {
attr = CRT_colors[PROCESS_SHADOW];
- procComm = Process_isKernelThread(lp) ? kthreadID : "N/A";
+ xSnprintf(buffer, n, " N/A ");
}
- /* 15 being (TASK_COMM_LEN - 1) */
- Process_printLeftAlignedField(str, attr, procComm, 15);
- return;
- }
- case PROC_EXE: {
- const char* procExe;
- if (lp->procExe) {
- attr = CRT_colors[Process_isUserlandThread(this) ? PROCESS_THREAD_BASENAME : PROCESS_BASENAME];
- if (lp->procExeDeleted)
- attr = CRT_colors[FAILED_READ];
- procExe = lp->procExe + lp->procExeBasenameOffset;
+ break;
+ case AUTOGROUP_NICE:
+ if (lp->autogroup_id != -1) {
+ xSnprintf(buffer, n, "%3d ", lp->autogroup_nice);
+ attr = lp->autogroup_nice < 0 ? CRT_colors[PROCESS_HIGH_PRIORITY]
+ : lp->autogroup_nice > 0 ? CRT_colors[PROCESS_LOW_PRIORITY]
+ : CRT_colors[PROCESS_SHADOW];
} else {
attr = CRT_colors[PROCESS_SHADOW];
- procExe = Process_isKernelThread(lp) ? kthreadID : "N/A";
+ xSnprintf(buffer, n, "N/A ");
}
- Process_printLeftAlignedField(str, attr, procExe, 15);
- return;
- }
- case CWD: {
- const char* cwd;
- if (!lp->cwd) {
- attr = CRT_colors[PROCESS_SHADOW];
- cwd = "N/A";
- } else if (String_startsWith(lp->cwd, "/proc/") && strstr(lp->cwd, " (deleted)") != NULL) {
- attr = CRT_colors[PROCESS_SHADOW];
- cwd = "main thread terminated";
- } else {
- cwd = lp->cwd;
- }
- Process_printLeftAlignedField(str, attr, cwd, 25);
- return;
- }
+ break;
default:
Process_writeField(this, str, field);
return;
}
- RichString_appendWide(str, attr, buffer);
+ RichString_appendAscii(str, attr, buffer);
+}
+
+static double adjustNaN(double num) {
+ if (isnan(num))
+ return -0.0005;
+
+ return num;
}
static int LinuxProcess_compareByKey(const Process* v1, const Process* v2, ProcessField key) {
@@ -760,98 +317,84 @@ static int LinuxProcess_compareByKey(const Process* v1, const Process* v2, Proce
switch (key) {
case M_DRS:
- return SPACESHIP_NUMBER(p2->m_drs, p1->m_drs);
- case M_DT:
- return SPACESHIP_NUMBER(p2->m_dt, p1->m_dt);
+ return SPACESHIP_NUMBER(p1->m_drs, p2->m_drs);
case M_LRS:
- return SPACESHIP_NUMBER(p2->m_lrs, p1->m_lrs);
+ return SPACESHIP_NUMBER(p1->m_lrs, p2->m_lrs);
case M_TRS:
- return SPACESHIP_NUMBER(p2->m_trs, p1->m_trs);
+ return SPACESHIP_NUMBER(p1->m_trs, p2->m_trs);
case M_SHARE:
- return SPACESHIP_NUMBER(p2->m_share, p1->m_share);
+ return SPACESHIP_NUMBER(p1->m_share, p2->m_share);
case M_PSS:
- return SPACESHIP_NUMBER(p2->m_pss, p1->m_pss);
+ return SPACESHIP_NUMBER(p1->m_pss, p2->m_pss);
case M_SWAP:
- return SPACESHIP_NUMBER(p2->m_swap, p1->m_swap);
+ return SPACESHIP_NUMBER(p1->m_swap, p2->m_swap);
case M_PSSWP:
- return SPACESHIP_NUMBER(p2->m_psswp, p1->m_psswp);
+ return SPACESHIP_NUMBER(p1->m_psswp, p2->m_psswp);
case UTIME:
- return SPACESHIP_NUMBER(p2->utime, p1->utime);
+ return SPACESHIP_NUMBER(p1->utime, p2->utime);
case CUTIME:
- return SPACESHIP_NUMBER(p2->cutime, p1->cutime);
+ return SPACESHIP_NUMBER(p1->cutime, p2->cutime);
case STIME:
- return SPACESHIP_NUMBER(p2->stime, p1->stime);
+ return SPACESHIP_NUMBER(p1->stime, p2->stime);
case CSTIME:
- return SPACESHIP_NUMBER(p2->cstime, p1->cstime);
+ return SPACESHIP_NUMBER(p1->cstime, p2->cstime);
case RCHAR:
- return SPACESHIP_NUMBER(p2->io_rchar, p1->io_rchar);
+ return SPACESHIP_NUMBER(p1->io_rchar, p2->io_rchar);
case WCHAR:
- return SPACESHIP_NUMBER(p2->io_wchar, p1->io_wchar);
+ return SPACESHIP_NUMBER(p1->io_wchar, p2->io_wchar);
case SYSCR:
- return SPACESHIP_NUMBER(p2->io_syscr, p1->io_syscr);
+ return SPACESHIP_NUMBER(p1->io_syscr, p2->io_syscr);
case SYSCW:
- return SPACESHIP_NUMBER(p2->io_syscw, p1->io_syscw);
+ return SPACESHIP_NUMBER(p1->io_syscw, p2->io_syscw);
case RBYTES:
- return SPACESHIP_NUMBER(p2->io_read_bytes, p1->io_read_bytes);
+ return SPACESHIP_NUMBER(p1->io_read_bytes, p2->io_read_bytes);
case WBYTES:
- return SPACESHIP_NUMBER(p2->io_write_bytes, p1->io_write_bytes);
+ return SPACESHIP_NUMBER(p1->io_write_bytes, p2->io_write_bytes);
case CNCLWB:
- return SPACESHIP_NUMBER(p2->io_cancelled_write_bytes, p1->io_cancelled_write_bytes);
+ return SPACESHIP_NUMBER(p1->io_cancelled_write_bytes, p2->io_cancelled_write_bytes);
case IO_READ_RATE:
- return SPACESHIP_NUMBER(p2->io_rate_read_bps, p1->io_rate_read_bps);
+ return SPACESHIP_NUMBER(adjustNaN(p1->io_rate_read_bps), adjustNaN(p2->io_rate_read_bps));
case IO_WRITE_RATE:
- return SPACESHIP_NUMBER(p2->io_rate_write_bps, p1->io_rate_write_bps);
+ return SPACESHIP_NUMBER(adjustNaN(p1->io_rate_write_bps), adjustNaN(p2->io_rate_write_bps));
case IO_RATE:
- return SPACESHIP_NUMBER(p2->io_rate_read_bps + p2->io_rate_write_bps, p1->io_rate_read_bps + p1->io_rate_write_bps);
+ return SPACESHIP_NUMBER(adjustNaN(p1->io_rate_read_bps) + adjustNaN(p1->io_rate_write_bps), adjustNaN(p2->io_rate_read_bps) + adjustNaN(p2->io_rate_write_bps));
#ifdef HAVE_OPENVZ
case CTID:
return SPACESHIP_NULLSTR(p1->ctid, p2->ctid);
case VPID:
- return SPACESHIP_NUMBER(p2->vpid, p1->vpid);
+ return SPACESHIP_NUMBER(p1->vpid, p2->vpid);
#endif
#ifdef HAVE_VSERVER
case VXID:
- return SPACESHIP_NUMBER(p2->vxid, p1->vxid);
+ return SPACESHIP_NUMBER(p1->vxid, p2->vxid);
#endif
case CGROUP:
return SPACESHIP_NULLSTR(p1->cgroup, p2->cgroup);
case OOM:
- return SPACESHIP_NUMBER(p2->oom, p1->oom);
+ return SPACESHIP_NUMBER(p1->oom, p2->oom);
#ifdef HAVE_DELAYACCT
case PERCENT_CPU_DELAY:
- return SPACESHIP_NUMBER(p2->cpu_delay_percent, p1->cpu_delay_percent);
+ return SPACESHIP_NUMBER(p1->cpu_delay_percent, p2->cpu_delay_percent);
case PERCENT_IO_DELAY:
- return SPACESHIP_NUMBER(p2->blkio_delay_percent, p1->blkio_delay_percent);
+ return SPACESHIP_NUMBER(p1->blkio_delay_percent, p2->blkio_delay_percent);
case PERCENT_SWAP_DELAY:
- return SPACESHIP_NUMBER(p2->swapin_delay_percent, p1->swapin_delay_percent);
+ return SPACESHIP_NUMBER(p1->swapin_delay_percent, p2->swapin_delay_percent);
#endif
case IO_PRIORITY:
return SPACESHIP_NUMBER(LinuxProcess_effectiveIOPriority(p1), LinuxProcess_effectiveIOPriority(p2));
case CTXT:
- return SPACESHIP_NUMBER(p2->ctxt_diff, p1->ctxt_diff);
+ return SPACESHIP_NUMBER(p1->ctxt_diff, p2->ctxt_diff);
case SECATTR:
return SPACESHIP_NULLSTR(p1->secattr, p2->secattr);
- case PROC_COMM: {
- const char *comm1 = p1->procComm ? p1->procComm : (Process_isKernelThread(p1) ? kthreadID : "");
- const char *comm2 = p2->procComm ? p2->procComm : (Process_isKernelThread(p2) ? kthreadID : "");
- return strcmp(comm1, comm2);
- }
- case PROC_EXE: {
- const char *exe1 = p1->procExe ? (p1->procExe + p1->procExeBasenameOffset) : (Process_isKernelThread(p1) ? kthreadID : "");
- const char *exe2 = p2->procExe ? (p2->procExe + p2->procExeBasenameOffset) : (Process_isKernelThread(p2) ? kthreadID : "");
- return strcmp(exe1, exe2);
- }
- case CWD:
- return SPACESHIP_NULLSTR(p1->cwd, p2->cwd);
+ case AUTOGROUP_ID:
+ return SPACESHIP_NUMBER(p1->autogroup_id, p2->autogroup_id);
+ case AUTOGROUP_NICE:
+ return SPACESHIP_NUMBER(p1->autogroup_nice, p2->autogroup_nice);
default:
return Process_compareByKey_Base(v1, v2, key);
}
}
-bool Process_isThread(const Process* this) {
- return (Process_isUserlandThread(this) || Process_isKernelThread(this));
-}
-
const ProcessClass LinuxProcess_class = {
.super = {
.extends = Class(Process),
@@ -860,6 +403,5 @@ const ProcessClass LinuxProcess_class = {
.compare = Process_compare
},
.writeField = LinuxProcess_writeField,
- .getCommandStr = LinuxProcess_getCommandStr,
.compareByKey = LinuxProcess_compareByKey
};

© 2014-2024 Faster IT GmbH | imprint | privacy policy