- PL2545 WAR: disable CKRM numtasks controller
[linux-2.6.git] / include / linux / taskdelays.h
1 #ifndef _LINUX_TASKDELAYS_H
2 #define _LINUX_TASKDELAYS_H
3
4 #include <linux/config.h>
5
6 struct task_delay_info {
7 #ifdef CONFIG_DELAY_ACCT
8         /* delay statistics in usecs */
9         unsigned long runs;
10         unsigned long waitcpu_total;
11         unsigned long runcpu_total;
12         unsigned long iowait_total;
13         unsigned long mem_iowait_total;
14         unsigned long num_iowaits;
15         unsigned long num_memwaits;
16 #endif
17 };
18
19 #endif // _LINUX_TASKDELAYS_H
20