~ersin/helenos/measure

« back to all changes in this revision

Viewing changes to uspace/app/top/top.h

  • Committer: Stanislav Kozina
  • Date: 2010-04-02 20:22:14 UTC
  • Revision ID: stanislav.kozina@gmail.com-20100402202214-2avg200k5etgkjo4
top echoes also basic cpu info

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
#define TOP_TOP_H_
35
35
 
36
36
#include <task.h>
 
37
#include <kernel/ps/cpuinfo.h>
37
38
 
38
39
typedef struct {
39
40
        unsigned int hours;
49
50
 
50
51
        task_id_t *tasks;
51
52
        unsigned int task_count;
 
53
 
 
54
        uspace_cpu_info_t *cpus;
 
55
        unsigned int cpu_count;
52
56
} data_t;
53
57
 
54
58
#endif