Lines Matching defs:taskstats

40 struct taskstats {  struct
46 __u16 version;
47 __u32 ac_exitcode; /* Exit status */
52 __u8 ac_flag; /* Record flags */
53 __u8 ac_nice; /* task_nice */
71 __u64 cpu_count __attribute__((aligned(8)));
72 __u64 cpu_delay_total;
79 __u64 blkio_count;
80 __u64 blkio_delay_total;
83 __u64 swapin_count;
84 __u64 swapin_delay_total;
92 __u64 cpu_run_real_total;
100 __u64 cpu_run_virtual_total;
105 char ac_comm[TS_COMM_LEN]; /* Command name */
106 __u8 ac_sched __attribute__((aligned(8)));
108 __u8 ac_pad[3];
109 __u32 ac_uid __attribute__((aligned(8)));
111 __u32 ac_gid; /* Group ID */
112 __u32 ac_pid; /* Process ID */
113 __u32 ac_ppid; /* Parent process ID */
114 __u32 ac_btime; /* Begin time [sec since 1970] */
115 __u64 ac_etime __attribute__((aligned(8)));
117 __u64 ac_utime; /* User CPU time [usec] */
118 __u64 ac_stime; /* SYstem CPU time [usec] */
119 __u64 ac_minflt; /* Minor Page Fault Count */
120 __u64 ac_majflt; /* Major Page Fault Count */
130 __u64 coremem; /* accumulated RSS usage in MB-usec */
134 __u64 virtmem; /* accumulated VM usage in MB-usec */
139 __u64 hiwater_rss; /* High-watermark of RSS usage, in KB */
140 __u64 hiwater_vm; /* High-water VM usage, in KB */
143 __u64 read_char; /* bytes read */
144 __u64 write_char; /* bytes written */
145 __u64 read_syscalls; /* read syscalls */
146 __u64 write_syscalls; /* write syscalls */
151 __u64 read_bytes; /* bytes of read I/O */
152 __u64 write_bytes; /* bytes of write I/O */
153 __u64 cancelled_write_bytes; /* bytes of cancelled write I/O */
155 __u64 nvcsw; /* voluntary_ctxt_switches */
156 __u64 nivcsw; /* nonvoluntary_ctxt_switches */
159 __u64 ac_utimescaled; /* utime scaled on frequency etc */
160 __u64 ac_stimescaled; /* stime scaled on frequency etc */
161 __u64 cpu_scaled_run_real_total; /* scaled cpu_run_real_total */
164 __u64 freepages_count;
188 TASKSTATS_TYPE_STATS, /* taskstats structure */ argument