• Home
  • Raw
  • Download

Lines Matching defs:taskstats

41 struct taskstats {  struct
47 __u16 version;
48 __u32 ac_exitcode; /* Exit status */
53 __u8 ac_flag; /* Record flags */
54 __u8 ac_nice; /* task_nice */
72 __u64 cpu_count __attribute__((aligned(8)));
73 __u64 cpu_delay_total;
80 __u64 blkio_count;
81 __u64 blkio_delay_total;
84 __u64 swapin_count;
85 __u64 swapin_delay_total;
93 __u64 cpu_run_real_total;
101 __u64 cpu_run_virtual_total;
106 char ac_comm[TS_COMM_LEN]; /* Command name */
107 __u8 ac_sched __attribute__((aligned(8)));
109 __u8 ac_pad[3];
110 __u32 ac_uid __attribute__((aligned(8)));
112 __u32 ac_gid; /* Group ID */
113 __u32 ac_pid; /* Process ID */
114 __u32 ac_ppid; /* Parent process ID */
116 __u32 ac_btime; /* Begin time [sec since 1970] */
117 __u64 ac_etime __attribute__((aligned(8)));
119 __u64 ac_utime; /* User CPU time [usec] */
120 __u64 ac_stime; /* SYstem CPU time [usec] */
121 __u64 ac_minflt; /* Minor Page Fault Count */
122 __u64 ac_majflt; /* Major Page Fault Count */
132 __u64 coremem; /* accumulated RSS usage in MB-usec */
136 __u64 virtmem; /* accumulated VM usage in MB-usec */
141 __u64 hiwater_rss; /* High-watermark of RSS usage, in KB */
142 __u64 hiwater_vm; /* High-water VM usage, in KB */
145 __u64 read_char; /* bytes read */
146 __u64 write_char; /* bytes written */
147 __u64 read_syscalls; /* read syscalls */
148 __u64 write_syscalls; /* write syscalls */
153 __u64 read_bytes; /* bytes of read I/O */
154 __u64 write_bytes; /* bytes of write I/O */
155 __u64 cancelled_write_bytes; /* bytes of cancelled write I/O */
157 __u64 nvcsw; /* voluntary_ctxt_switches */
158 __u64 nivcsw; /* nonvoluntary_ctxt_switches */
161 __u64 ac_utimescaled; /* utime scaled on frequency etc */
162 __u64 ac_stimescaled; /* stime scaled on frequency etc */
163 __u64 cpu_scaled_run_real_total; /* scaled cpu_run_real_total */
166 __u64 freepages_count;
167 __u64 freepages_delay_total;
170 __u64 thrashing_count;
171 __u64 thrashing_delay_total;
197 TASKSTATS_TYPE_STATS, /* taskstats structure */ argument