Chris Wilson 6a64ee938b overlay: Include CPU usage in the overview chart
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2013-08-18 15:57:47 +01:00

14 lines
194 B
C

#include <stdint.h>
struct cpu_top {
uint8_t busy;
int count;
struct cpu_stat {
uint64_t user, nice, sys, idle;
uint64_t total;
} stat[2];
};
int cpu_top_update(struct cpu_top *cpu);