linux-5.15/list_add()
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#y27867a9]
#backlinks
*説明 [#u6f67677]
-パス: [[linux-5.15/include/linux/list.h]]
-リストnewを別のリストheadの先頭に追加する。
**引数 [#a9e8c5ec]
-struct list_head *new
--追加する要素。
--[[linux-5.15/list_head()]]
-struct list_head *head
--newを先頭に追加する対象となるリスト
**返り値 [#t56ff2d0]
-なし
**参考 [#xbdc403e]
*実装 [#abf1ba5a]
/**
* list_add - add a new entry
* @new: new entry to be added
* @head: list head to add it after
*
* Insert a new entry after the specified head.
* This is good for implementing stacks.
*/
static inline void list_add(struct list_head *new, struc...
{
__list_add(new, head, head->next);
}
-headの先頭にnewを追加する。head -> new -> head->nextの順...
--[[linux-5.15/__list_add()]]
*コメント [#e534919d]
終了行:
*参照元 [#y27867a9]
#backlinks
*説明 [#u6f67677]
-パス: [[linux-5.15/include/linux/list.h]]
-リストnewを別のリストheadの先頭に追加する。
**引数 [#a9e8c5ec]
-struct list_head *new
--追加する要素。
--[[linux-5.15/list_head()]]
-struct list_head *head
--newを先頭に追加する対象となるリスト
**返り値 [#t56ff2d0]
-なし
**参考 [#xbdc403e]
*実装 [#abf1ba5a]
/**
* list_add - add a new entry
* @new: new entry to be added
* @head: list head to add it after
*
* Insert a new entry after the specified head.
* This is good for implementing stacks.
*/
static inline void list_add(struct list_head *new, struc...
{
__list_add(new, head, head->next);
}
-headの先頭にnewを追加する。head -> new -> head->nextの順...
--[[linux-5.15/__list_add()]]
*コメント [#e534919d]
ページ名: