C 在Linux内核中,“pos”是什么意思;s list.h

C 在Linux内核中,“pos”是什么意思;s list.h,c,linux-kernel,naming,C,Linux Kernel,Naming,提供了许多宏,用于在其自己的链表实现上迭代。例如: /** * list_for_each - iterate over a list * @pos: the &struct list_head to use as a loop cursor. * @head: the head for your list. */ #define list_for_each(pos, head) \ for (pos = (head)->next; pos !=

提供了许多宏,用于在其自己的链表实现上迭代。例如:

/**
 * list_for_each    -   iterate over a list
 * @pos:    the &struct list_head to use as a loop cursor.
 * @head:   the head for your list.
 */
#define list_for_each(pos, head) \
    for (pos = (head)->next; pos != (head); pos = pos->next)

试图缩写的
pos
参数的名称是什么?(pos代表什么意思?

它表示“位置”,如列表中的当前位置。

它表示“位置”,如列表中的当前位置。

它是缩写“位置”,它显示当前光标位置。

它是缩写“位置”,它显示了当前光标位置。

所以应该有一个答案锁定机制:Pso应该有一个答案锁定机制:p