From 26169009d5deb4f43ebafa5e28be4b49a318e81d Mon Sep 17 00:00:00 2001 From: Alastair Poole Date: Thu, 10 Sep 2020 00:49:32 +0100 Subject: [PATCH] proc: show kernel threads by default... Not showing them puts doubt...it also means having to explain to a user somewhere how to turn it on...OpenBSD doesnt have this.. Linux does, FreeBSD does...macOS probably does but you'd need to buy a permit and then sign it in blood... --- src/bin/system/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/system/process.c b/src/bin/system/process.c index 865ce37..aaa81f3 100644 --- a/src/bin/system/process.c +++ b/src/bin/system/process.c @@ -44,7 +44,7 @@ #include "macros.h" -static Eina_Bool _show_kthreads = EINA_FALSE; +static Eina_Bool _show_kthreads = EINA_TRUE; void proc_info_kthreads_show_set(Eina_Bool enabled)