mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-10 09:26:10 +00:00
14 lines
194 B
C
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);
|