Commit 5b302808 authored by Hisham Muhammad's avatar Hisham Muhammad
Browse files

shorten scope of variables.

parent 0a4ddab2
...@@ -874,7 +874,7 @@ static bool ProcessList_processEntries(ProcessList* this, const char* dirname, P ...@@ -874,7 +874,7 @@ static bool ProcessList_processEntries(ProcessList* this, const char* dirname, P
} }
void ProcessList_scan(ProcessList* this) { void ProcessList_scan(ProcessList* this) {
unsigned long long int usertime, nicetime, systemtime, systemalltime, idlealltime, idletime, totaltime, virtalltime; unsigned long long int usertime, nicetime, systemtime, idletime;
unsigned long long int swapFree = 0; unsigned long long int swapFree = 0;
FILE* file = fopen(PROCMEMINFOFILE, "r"); FILE* file = fopen(PROCMEMINFOFILE, "r");
...@@ -925,6 +925,7 @@ void ProcessList_scan(ProcessList* this) { ...@@ -925,6 +925,7 @@ void ProcessList_scan(ProcessList* this) {
char buffer[256]; char buffer[256];
int cpuid; int cpuid;
unsigned long long int ioWait, irq, softIrq, steal, guest, guestnice; unsigned long long int ioWait, irq, softIrq, steal, guest, guestnice;
unsigned long long int systemalltime, idlealltime, totaltime, virtalltime;
ioWait = irq = softIrq = steal = guest = guestnice = 0; ioWait = irq = softIrq = steal = guest = guestnice = 0;
// Dependending on your kernel version, // Dependending on your kernel version,
// 5, 7, 8 or 9 of these fields will be set. // 5, 7, 8 or 9 of these fields will be set.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment