Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\time\posix-cpu-timers.c Create Date:2022-07-28 10:47:28
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:Sample a per-thread clock for the given task. clkid is validated.

Proto:static u64 cpu_clock_sample(const clockid_t clkid, struct task_struct *p)

Type:u64

Parameter:

TypeParameterName
const clockid_tclkid
struct task_struct *p
201  If clkid == CPUCLOCK_SCHED Then Return Return accounted runtime for the task.* In case the task is currently running, return the runtime plus current's* pending runtime that have not been accounted yet.
204  task_cputime(p, & utime, & stime)
207  Case clkid == CPUCLOCK_PROF
208  Return utime + stime
209  Case clkid == CPUCLOCK_VIRT
210  Return utime
211  Default
212  WARN_ON_ONCE(1)
214  Return 0
Caller
NameDescribe
posix_cpu_clock_get
posix_cpu_timer_setGuts of sys_timer_settime for CPU timers.* This is called with the timer locked and interrupts disabled.* If we return TIMER_RETRY, it's necessary to release the timer's lock* and try again. (This happens when the timer is in the middle of firing.)
posix_cpu_timer_get
posix_cpu_timer_rearm