Changes in uspace/app/top/top.c [d0c82c5:b3b7e14a] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/top/top.c

    rd0c82c5 rb3b7e14a  
    175175        }
    176176       
    177         /* For each CPU: Compute total cycles and divide it between
     177        /* For each CPU: Compute total ticks and divide it between
    178178           user and kernel */
    179179       
     
    181181        for (i = 0; i < new_data->cpus_count; i++) {
    182182                uint64_t idle =
    183                     new_data->cpus[i].idle_cycles - old_data->cpus[i].idle_cycles;
     183                    new_data->cpus[i].idle_ticks - old_data->cpus[i].idle_ticks;
    184184                uint64_t busy =
    185                     new_data->cpus[i].busy_cycles - old_data->cpus[i].busy_cycles;
     185                    new_data->cpus[i].busy_ticks - old_data->cpus[i].busy_ticks;
    186186                uint64_t sum = idle + busy;
    187187               
Note: See TracChangeset for help on using the changeset viewer.