1
2
3
4
5
6 #ifndef __POWERPC_ACCOUNTING_H
7 #define __POWERPC_ACCOUNTING_H
8
9
10 struct cpu_accounting_data {
11
12 unsigned long utime;
13 unsigned long stime;
14 #ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME
15 unsigned long utime_scaled;
16 unsigned long stime_scaled;
17 #endif
18 unsigned long gtime;
19 unsigned long hardirq_time;
20 unsigned long softirq_time;
21 unsigned long steal_time;
22 unsigned long idle_time;
23
24 unsigned long starttime;
25 unsigned long starttime_user;
26 #ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME
27 unsigned long startspurr;
28 unsigned long utime_sspurr;
29 #endif
30 };
31
32 #endif