mirror of https://github.com/xzeldon/htop.git
Make remaining number literals use uppercase
This commit is contained in:
parent
5fa1c7040d
commit
4a73e80338
|
@ -299,7 +299,7 @@ void DarwinProcess_setFromLibprocPidinfo(DarwinProcess* proc, DarwinProcessList*
|
||||||
uint64_t total_existing_time = proc->stime + proc->utime;
|
uint64_t total_existing_time = proc->stime + proc->utime;
|
||||||
uint64_t total_current_time = pti.pti_total_system + pti.pti_total_user;
|
uint64_t total_current_time = pti.pti_total_system + pti.pti_total_user;
|
||||||
|
|
||||||
if (total_existing_time && 1e-6 < time_interval) {
|
if (total_existing_time && 1E-6 < time_interval) {
|
||||||
uint64_t total_time_diff = total_current_time - total_existing_time;
|
uint64_t total_time_diff = total_current_time - total_existing_time;
|
||||||
proc->super.percent_cpu = ((double)total_time_diff / time_interval) * 100.0;
|
proc->super.percent_cpu = ((double)total_time_diff / time_interval) * 100.0;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -1371,7 +1371,7 @@ static bool LinuxProcessList_recurseProcTree(LinuxProcessList* this, openat_arg_
|
||||||
}
|
}
|
||||||
|
|
||||||
/* period might be 0 after system sleep */
|
/* period might be 0 after system sleep */
|
||||||
float percent_cpu = (period < 1e-6) ? 0.0F : ((lp->utime + lp->stime - lasttimes) / period * 100.0);
|
float percent_cpu = (period < 1E-6) ? 0.0F : ((lp->utime + lp->stime - lasttimes) / period * 100.0);
|
||||||
proc->percent_cpu = CLAMP(percent_cpu, 0.0F, cpus * 100.0F);
|
proc->percent_cpu = CLAMP(percent_cpu, 0.0F, cpus * 100.0F);
|
||||||
proc->percent_mem = proc->m_resident / (double)(pl->totalMem) * 100.0;
|
proc->percent_mem = proc->m_resident / (double)(pl->totalMem) * 100.0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue