summaryrefslogtreecommitdiffstats
path: root/ProcessList.c
diff options
context:
space:
mode:
authorDenis Lisov <dennis.lissov@gmail.com>2021-12-16 17:43:05 +0300
committerBenBE <BenBE@geshi.org>2022-02-13 19:50:16 +0100
commit8d987864e49653a477026b829f79f4d7c8e3bccd (patch)
treeb63d7e59029f1ff3c3e6d6a50d6dd6aecaa5e0eb /ProcessList.c
parent58b42e4cac462cf4742566d9567cc8c3ac52cf8f (diff)
ProcessList_buildTree: drop sort direction checking
This is only a partial check that does not take into account the sort field used and is overridden later anyway.
Diffstat (limited to 'ProcessList.c')
-rw-r--r--ProcessList.c13
1 files changed, 4 insertions, 9 deletions
diff --git a/ProcessList.c b/ProcessList.c
index e78a96f5..2131824d 100644
--- a/ProcessList.c
+++ b/ProcessList.c
@@ -332,7 +332,7 @@ static void ProcessList_updateTreeSet(ProcessList* this) {
assert((int)Hashtable_count(this->displayTreeSet) == vsize);
}
-static void ProcessList_buildTreeBranch(ProcessList* this, pid_t pid, int level, int indent, int direction, bool show, int* node_counter, int* node_index) {
+static void ProcessList_buildTreeBranch(ProcessList* this, pid_t pid, int level, int indent, bool show, int* node_counter, int* node_index) {
// On OpenBSD the kernel thread 'swapper' has pid 0.
// Do not treat it as root of any tree.
if (pid == 0)
@@ -362,16 +362,12 @@ static void ProcessList_buildTreeBranch(ProcessList* this, pid_t pid, int level,
}
int s = Vector_size(this->displayList);
- if (direction == 1) {
- Vector_add(this->displayList, process);
- } else {
- Vector_insert(this->displayList, 0, process);
- }
+ Vector_add(this->displayList, process);
assert(Vector_size(this->displayList) == s + 1); (void)s;
int nextIndent = indent | (1 << level);
- ProcessList_buildTreeBranch(this, process->pid, level + 1, (i < lastShown) ? nextIndent : indent, direction, process->show && process->showChildren, node_counter, node_index);
+ ProcessList_buildTreeBranch(this, process->pid, level + 1, (i < lastShown) ? nextIndent : indent, process->show && process->showChildren, node_counter, node_index);
if (i == lastShown) {
process->indent = -nextIndent;
} else {
@@ -409,7 +405,6 @@ static void ProcessList_buildTree(ProcessList* this) {
int node_counter = 1;
int node_index = 0;
- int direction = ScreenSettings_getActiveDirection(this->settings->ss);
// Sort by PID
Vector_quickSortCustomCompare(this->processes, ProcessList_treeProcessCompareByPID);
@@ -446,7 +441,7 @@ static void ProcessList_buildTree(ProcessList* this) {
process->tree_index = node_index++;
Vector_add(this->displayList, process);
Hashtable_put(this->displayTreeSet, process->tree_index, process);
- ProcessList_buildTreeBranch(this, process->pid, 0, 0, direction, process->showChildren, &node_counter, &node_index);
+ ProcessList_buildTreeBranch(this, process->pid, 0, 0, process->showChildren, &node_counter, &node_index);
process->tree_right = node_counter++;
continue;
}

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