函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\cgroup\cgroup-v1.c Create Date:2022-07-27 12:14:50
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:pidlist_uniq - given a kmalloc()ed list, strip out all duplicate entries* Returns the number of unique elements.

函数原型:static int pidlist_uniq(pid_t *list, int length)

返回类型:int

参数:

类型参数名称
pid_t *list
intlength
243  dest等于1
249  如果length恒等于0或length恒等于1则返回:length
252 src小于length循环
254 list[src]恒等于list[src - 1]循环
255  src自加
256  如果src恒等于length则转到:after
260  list[dest]等于list[src]
261  dest自加
263  after :
264  返回:dest
调用者
名称描述
pidlist_array_loadLoad a cgroup's pidarray with either procs' tgids or tasks' pids