mirror of
https://github.com/xzeldon/htop.git
synced 2025-07-12 12:14:36 +03:00
Drop hideThreads Setting
It is only used to read process directories on RedHat beginning with a dot. Unconditionally accept directories with a starting dot.
This commit is contained in:

committed by
BenBE

parent
9f67b95308
commit
ad72b747fa
@ -985,7 +985,7 @@ static bool LinuxProcessList_recurseProcTree(LinuxProcessList* this, const char*
|
||||
|
||||
// The RedHat kernel hides threads with a dot.
|
||||
// I believe this is non-standard.
|
||||
if ((!settings->hideThreads) && name[0] == '.') {
|
||||
if (name[0] == '.') {
|
||||
name++;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user