summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2018-02-04 08:49:15 +0100
committerHisham Muhammad <hisham@gobolinux.org>2018-02-04 08:57:35 +0100
commit9bc609918098742bb69f12183d5727eb405ac594 (patch)
tree5ab7a7c9498dd42a220ae2010855bac7b4c1f5af
parent36d5018c0c3802ce430137f08ad72928cc92c03b (diff)
Only compute counters is process is shown
-rw-r--r--linux/LinuxProcessList.c2
-rw-r--r--linux/LinuxProcessList.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/linux/LinuxProcessList.c b/linux/LinuxProcessList.c
index e72a023d..357bbff0 100644
--- a/linux/LinuxProcessList.c
+++ b/linux/LinuxProcessList.c
@@ -665,7 +665,7 @@ static void LinuxProcessList_readDelayAcctData(LinuxProcessList* this, LinuxProc
#define READ_COUNTER(_b, _var, _flag, _type, _config) \
bool _b ## Ok = false; \
uint64_t _b ## Delta = 0; \
- if (flags & _flag) { \
+ if (flags & _flag && lp->super.show) { \
if (!_var) { \
_var = PerfCounter_new(lp->super.pid, _type, _config); \
_b ## Ok = PerfCounter_read(_var); \
diff --git a/linux/LinuxProcessList.h b/linux/LinuxProcessList.h
index 310f5dfd..16de2335 100644
--- a/linux/LinuxProcessList.h
+++ b/linux/LinuxProcessList.h
@@ -121,7 +121,7 @@ void ProcessList_delete(ProcessList* pl);
#define READ_COUNTER(_b, _var, _flag, _type, _config) \
bool _b ## Ok = false; \
uint64_t _b ## Delta = 0; \
- if (flags & _flag) { \
+ if (flags & _flag && lp->super.show) { \
if (!_var) { \
_var = PerfCounter_new(lp->super.pid, _type, _config); \
_b ## Ok = PerfCounter_read(_var); \

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