0
Linux kernel's list.h提供了許多用於迭代自己的鏈表實現的宏。例如:「pos」在Linux內核列表中的含義是什麼?h
/**
* 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
代表什麼意思?)
回聲...回聲...回聲... –
我希望我的線程會像我們剛纔一樣同步:) – tversteeg
所以應該有一個答案鎖定機制:P – Tommylee2k