*参照元 [#rc368c10] #backlinks *説明 [#qc284b2e] -パス: [[linux-2.6.33/include/linux/list.h]] -FIXME: これは何? --説明 **引数 [#r8359403] -struct list_head *new -- --[[linux-2.6.33/list_head]] struct list_head *head -struct list_head *head -- **返り値 [#d6553994] -なし **参考 [#kaf2430c] *実装 [#l2dda6c8] /** * 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, struct list_head *head) { __list_add(new, head, head->next); - --[[linux-2.6.33/__list_add()]] } *コメント [#w817ab32]