summaryrefslogtreecommitdiffstats
path: root/freebsd/FreeBSDProcessList.c
diff options
context:
space:
mode:
authorChristian Göttsche <cgzones@googlemail.com>2020-09-08 16:17:31 +0200
committercgzones <cgzones@googlemail.com>2020-09-18 12:28:40 +0200
commitefb971f9df0a8f2ed908a19147ca7b0036b4515d (patch)
tree97ebb30c75e118a2f1552ff8795710acbc3b6ed0 /freebsd/FreeBSDProcessList.c
parent475f729a364ce92999f67adba4d754babe12a266 (diff)
Fail travis CI on compiler warnings
Diffstat (limited to 'freebsd/FreeBSDProcessList.c')
-rw-r--r--freebsd/FreeBSDProcessList.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/freebsd/FreeBSDProcessList.c b/freebsd/FreeBSDProcessList.c
index 06e729c8..11cfe7e1 100644
--- a/freebsd/FreeBSDProcessList.c
+++ b/freebsd/FreeBSDProcessList.c
@@ -391,7 +391,7 @@ void ProcessList_goThroughEntries(ProcessList* this) {
for (int i = 0; i < count; i++) {
struct kinfo_proc* kproc = &kprocs[i];
bool preExisting = false;
- bool isIdleProcess = false;
+ // TODO: bool isIdleProcess = false;
struct tm date;
Process* proc = ProcessList_getProcess(this, kproc->ki_pid, &preExisting, (Process_New) FreeBSDProcess_new);
FreeBSDProcess* fp = (FreeBSDProcess*) proc;
@@ -449,12 +449,15 @@ void ProcessList_goThroughEntries(ProcessList* this) {
proc->percent_cpu = 100.0 * ((double)kproc->ki_pctcpu / (double)kernelFScale);
proc->percent_mem = 100.0 * (proc->m_resident * PAGE_SIZE_KB) / (double)(this->totalMem);
- if (proc->percent_cpu > 0.1) {
- // system idle process should own all CPU time left regardless of CPU count
- if ( strcmp("idle", kproc->ki_comm) == 0 ) {
- isIdleProcess = true;
- }
- }
+ /*
+ * TODO
+ * if (proc->percent_cpu > 0.1) {
+ * // system idle process should own all CPU time left regardless of CPU count
+ * if ( strcmp("idle", kproc->ki_comm) == 0 ) {
+ * isIdleProcess = true;
+ * }
+ * }
+ */
proc->priority = kproc->ki_pri.pri_level - PZERO;

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