0001
0002
0003
0004
0005
0006 #ifndef __POWERPC_ACCOUNTING_H
0007 #define __POWERPC_ACCOUNTING_H
0008
0009
0010 struct cpu_accounting_data {
0011
0012 unsigned long utime;
0013 unsigned long stime;
0014 #ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME
0015 unsigned long utime_scaled;
0016 unsigned long stime_scaled;
0017 #endif
0018 unsigned long gtime;
0019 unsigned long hardirq_time;
0020 unsigned long softirq_time;
0021 unsigned long steal_time;
0022 unsigned long idle_time;
0023
0024 unsigned long starttime;
0025 unsigned long starttime_user;
0026 #ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME
0027 unsigned long startspurr;
0028 unsigned long utime_sspurr;
0029 #endif
0030 };
0031
0032 #endif