printf: Remove unused 'bprintf'
[drm/drm-misc.git] / include / linux / sched / types.h
blob969aaf5ef9d60645b5c17e5026c707f7bb32cff6
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_SCHED_TYPES_H
3 #define _LINUX_SCHED_TYPES_H
5 #include <linux/types.h>
7 /**
8 * struct task_cputime - collected CPU time counts
9 * @stime: time spent in kernel mode, in nanoseconds
10 * @utime: time spent in user mode, in nanoseconds
11 * @sum_exec_runtime: total time spent on the CPU, in nanoseconds
13 * This structure groups together three kinds of CPU time that are tracked for
14 * threads and thread groups. Most things considering CPU time want to group
15 * these counts together and treat all three of them in parallel.
17 struct task_cputime {
18 u64 stime;
19 u64 utime;
20 unsigned long long sum_exec_runtime;
23 #endif /* _LINUX_SCHED_TYPES_H */