summaryrefslogtreecommitdiffstats
path: root/Process.h
diff options
context:
space:
mode:
authorVladimir Panteleev <git@thecybershadow.net>2018-01-14 09:08:20 +0000
committerHisham Muhammad <hisham@gobolinux.org>2018-02-04 16:44:21 +0100
commit87be623eac49676ef0ac8e95733308dc12e37582 (patch)
treebc1b21599a7258865b2eb1800da791b11fe32745 /Process.h
parentb27712181aa27ae1e993f1a505c8e3717e709244 (diff)
Add support for Linux TASK_IDLE
Linux commit 06eb61844d841d0032a9950ce7f8e783ee49c0d0 ("sched/debug: Add explicit TASK_IDLE printing") exposes kthreads idling using TASK_IDLE in procfs as "I (idle)". Until now, when sorting the STATE ("S") column, htop used the raw value of the state character for comparison, however that led to the undesirable effect of TASK_IDLE ('I') tasks being sorted above tasks that were running ('R'). Thus, explicitly recognize the idle process state, and sort it below others.
Diffstat (limited to 'Process.h')
-rw-r--r--Process.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Process.h b/Process.h
index 5b8ffdba..5179bb6f 100644
--- a/Process.h
+++ b/Process.h
@@ -153,6 +153,8 @@ typedef struct ProcessClass_ {
#define Process_isChildOf(process_, pid_) (process_->tgid == pid_ || (process_->tgid == process_->pid && process_->ppid == pid_))
+#define Process_sortState(state) ((state) == 'I' ? 0x100 : (state))
+
#define ONE_K 1024L
#define ONE_M (ONE_K * ONE_K)

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