summaryrefslogtreecommitdiffstats
path: root/netbsd
diff options
context:
space:
mode:
authorfraggerfox <santhosh.raju@gmail.com>2021-04-24 09:59:11 +0530
committerBenBE <BenBE@geshi.org>2021-06-26 12:18:37 +0200
commite42ae55d691b0e2018d3569ae687cf0cda98c0f8 (patch)
treeb45df02154e6fb2c98c5637ec098a2f0f0ccd889 /netbsd
parent497f468ed085341ad93e124f20f119cb4836bb80 (diff)
Renames variable from opl to npl for consistency.
Diffstat (limited to 'netbsd')
-rw-r--r--netbsd/NetBSDProcessList.c26
-rw-r--r--netbsd/Platform.c4
2 files changed, 15 insertions, 15 deletions
diff --git a/netbsd/NetBSDProcessList.c b/netbsd/NetBSDProcessList.c
index f539cb61..54588b7b 100644
--- a/netbsd/NetBSDProcessList.c
+++ b/netbsd/NetBSDProcessList.c
@@ -45,8 +45,8 @@ ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidMatchList, ui
size_t size;
char errbuf[_POSIX2_LINE_MAX];
- NetBSDProcessList* opl = xCalloc(1, sizeof(NetBSDProcessList));
- ProcessList* pl = (ProcessList*) opl;
+ NetBSDProcessList* npl = xCalloc(1, sizeof(NetBSDProcessList));
+ ProcessList* pl = (ProcessList*) npl;
ProcessList_init(pl, Class(NetBSDProcess), usersTable, pidMatchList, userId);
size = sizeof(pl->cpuCount);
@@ -54,7 +54,7 @@ ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidMatchList, ui
if (r < 0 || pl->cpuCount < 1) {
pl->cpuCount = 1;
}
- opl->cpus = xCalloc(pl->cpuCount + 1, sizeof(CPUData));
+ npl->cpus = xCalloc(pl->cpuCount + 1, sizeof(CPUData));
size = sizeof(fscale);
if (sysctl(fmib, 2, &fscale, &size, NULL, 0) < 0) {
@@ -66,13 +66,13 @@ ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidMatchList, ui
pageSizeKB = pageSize / ONE_K;
for (unsigned int i = 0; i <= pl->cpuCount; i++) {
- CPUData* d = opl->cpus + i;
+ CPUData* d = npl->cpus + i;
d->totalTime = 1;
d->totalPeriod = 1;
}
- opl->kd = kvm_openfiles(NULL, NULL, NULL, KVM_NO_FILES, errbuf);
- if (opl->kd == NULL) {
+ npl->kd = kvm_openfiles(NULL, NULL, NULL, KVM_NO_FILES, errbuf);
+ if (npl->kd == NULL) {
CRT_fatalError("kvm_openfiles() failed");
}
@@ -80,13 +80,13 @@ ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidMatchList, ui
}
void ProcessList_delete(ProcessList* this) {
- NetBSDProcessList* opl = (NetBSDProcessList*) this;
+ NetBSDProcessList* npl = (NetBSDProcessList*) this;
- if (opl->kd) {
- kvm_close(opl->kd);
+ if (npl->kd) {
+ kvm_close(npl->kd);
}
- free(opl->cpus);
+ free(npl->cpus);
ProcessList_done(this);
free(this);
@@ -303,15 +303,15 @@ static void NetBSDProcessList_scanCPUTime(NetBSDProcessList* this) {
}
void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate) {
- NetBSDProcessList* opl = (NetBSDProcessList*) super;
+ NetBSDProcessList* npl = (NetBSDProcessList*) super;
NetBSDProcessList_scanMemoryInfo(super);
- NetBSDProcessList_scanCPUTime(opl);
+ NetBSDProcessList_scanCPUTime(npl);
// in pause mode only gather global data for meters (CPU/memory/...)
if (pauseProcessUpdate) {
return;
}
- NetBSDProcessList_scanProcs(opl);
+ NetBSDProcessList_scanProcs(npl);
}
diff --git a/netbsd/Platform.c b/netbsd/Platform.c
index 480d2b22..5f2a434e 100644
--- a/netbsd/Platform.c
+++ b/netbsd/Platform.c
@@ -199,8 +199,8 @@ int Platform_getMaxPid() {
}
double Platform_setCPUValues(Meter* this, int cpu) {
- const NetBSDProcessList* pl = (const NetBSDProcessList*) this->pl;
- const CPUData* cpuData = &(pl->cpus[cpu]);
+ const NetBSDProcessList* npl = (const NetBSDProcessList*) this->pl;
+ const CPUData* cpuData = &npl->cpus[cpu];
double total = cpuData->totalPeriod == 0 ? 1 : cpuData->totalPeriod;
double totalPercent;
double* v = this->values;

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