Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\timerqueue.c Create Date:2022-07-28 06:13:15
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:merqueue_iterate_next - Returns the timer after the provided timer*@node: Pointer to a timer.* Provides the timer that is after the given node. This is used, when* necessary, to iterate through the list of timers in a timer list

Proto:struct timerqueue_node *timerqueue_iterate_next(struct timerqueue_node *node)

Type:struct timerqueue_node

Parameter:

TypeParameterName
struct timerqueue_node *node
87  If Not node Then Return NULL
89  next = rb_next( & node)
90  If Not next Then Return NULL
92  Return container_of - cast a member of a structure out to the containing structure*@ptr: the pointer to the member.*@type: the type of the container struct this is embedded in.*@member: the name of the member within the struct.(next, structtimerqueue_node, node)
Caller
NameDescribe
print_active_timers