@Ghazascanner
_2019runbot
Ghazascanner File Manager
server :Linux phpmyadmin-ubuntu-m-2vcpu-16gb-blr1-01 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
Current Path :
/
usr
/
src
/
linux-headers-5.4.0-216-generic
/
include
/
linux
/
sched
/
Path :
Upload File :
New :
File
Dir
//usr/src/linux-headers-5.4.0-216-generic/include/linux/sched/types.h
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _LINUX_SCHED_TYPES_H #define _LINUX_SCHED_TYPES_H #include <linux/types.h> /** * struct task_cputime - collected CPU time counts * @stime: time spent in kernel mode, in nanoseconds * @utime: time spent in user mode, in nanoseconds * @sum_exec_runtime: total time spent on the CPU, in nanoseconds * * This structure groups together three kinds of CPU time that are tracked for * threads and thread groups. Most things considering CPU time want to group * these counts together and treat all three of them in parallel. */ struct task_cputime { u64 stime; u64 utime; unsigned long long sum_exec_runtime; }; #endif