#ifndef __LINUX_TASK_STRUCT_H #define __LINUX_TASK_STRUCT_H #include #include #include #include typedef struct { long state; int pid, tgid; unsigned long utime, stime; int prio, static_prio; unsigned long sleep_avg; unsigned int time_slice, first_time_slice; } task_info_struct; #endif