Lines Matching +full:in +full:- +full:and +full:- +full:around

7 There are three different groups of fields in the struct taskstats:
9 1) Common and basic accounting fields
10 If CONFIG_TASKSTATS is set, the taskstats interface is enabled and
11 the common fields and basic accounting fields are collected for
18 and::
28 and::
34 4) Per-task and per-thread context switch count statistics
40 Future extension should add fields to the end of the taskstats struct, and
47 1) Common and basic accounting fields::
50 * TASKSTATS_VERSION, which is defined in <linux/taskstats.h>.
58 /* The accounting flags of a task as defined in <linux/acct.h>
59 * Defined values are AFORK, ASU, ACOMPAT, ACORE, and AXSIG.
69 /* The scheduling discipline as set in task->policy field. */
78 /* The time when a task begins, in [secs] since 1970. */
81 /* The elapsed time of a task, in [usec]. */
84 /* The user CPU time of a task, in [usec]. */
87 /* The system CPU time of a task, in [usec]. */
90 /* The minor page fault count of a task, as set in task->min_flt. */
93 /* The major page fault count of a task, as set in task->maj_flt. */
106 * xxx_delay_total is the corresponding cumulative delay in nanoseconds
108 * xxx_delay_total wraps around to zero on overflow
118 /* Following four fields atomically updated using task->delays->lock */
121 * does not account for delays in I/O submission
126 /* Delay waiting for page fault I/O (swap in only) */
130 /* cpu "wall-clock" running time
132 * from the kernel in involuntary waits due to virtualization.
133 * Value is cumulative, in nanoseconds, without a corresponding count
134 * and wraps around to zero silently on overflow
141 * Value is cumulative, in nanoseconds, without a corresponding count
142 * and wraps around to zero silently on overflow
153 /* Accumulated RSS usage in duration of a task, in MBytes-usecs.
159 __u64 coremem; /* accumulated RSS usage in MB-usec */
161 /* Accumulated virtual memory usage in duration of a task.
164 __u64 virtmem; /* accumulated VM usage in MB-usec */
166 /* High watermark of RSS usage in duration of a task, in KBytes. */
167 __u64 hiwater_rss; /* High-watermark of RSS usage */
169 /* High watermark of VM usage in duration of a task, in KBytes. */
170 __u64 hiwater_vm; /* High-water virtual memory usage */
180 4) Per-task and per-thread statistics::