Fork us on GitHub Follow us on Facebook Follow us on Twitter

Changeset a0ce870 in mainline for uspace/app/top/top.c


Ignore:
Timestamp:
2011-01-25T18:11:17Z (12 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial
Children:
6265a2b, bf75e3cb
Parents:
311bc25
Message:

statistics: provide resident (actually used) memory of tasks

File:
1 edited

Legend:

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

    r311bc25 ra0ce870  
    195195       
    196196        uint64_t virtmem_total = 0;
     197        uint64_t resmem_total = 0;
    197198        uint64_t ucycles_total = 0;
    198199        uint64_t kcycles_total = 0;
     
    223224               
    224225                virtmem_total += new_data->tasks[i].virtmem;
     226                resmem_total += new_data->tasks[i].resmem;
    225227                ucycles_total += new_data->ucycles_diff[i];
    226228                kcycles_total += new_data->kcycles_diff[i];
     
    232234                FRACTION_TO_FLOAT(new_data->tasks_perc[i].virtmem,
    233235                    new_data->tasks[i].virtmem * 100, virtmem_total);
     236                FRACTION_TO_FLOAT(new_data->tasks_perc[i].resmem,
     237                    new_data->tasks[i].resmem * 100, resmem_total);
    234238                FRACTION_TO_FLOAT(new_data->tasks_perc[i].ucycles,
    235239                    new_data->ucycles_diff[i] * 100, ucycles_total);
Note: See TracChangeset for help on using the changeset viewer.