*参照元 [#jd7801ec]
#backlinks

*説明 [#led434cf]
-パス: [[linux-2.6.25/include/linux/list.h]]

-これは何?
--説明


**引数 [#a0fed632]
-struct list_head *entry
--
--[[linux-2.6.25/list_head]]

**返り値 [#q3b87876]
-なし

**参考 [#tbceb456]


*実装 [#f9ef50e8]
 /**
  * list_del_init - deletes entry from list and reinitialize it.
  * @entry: the element to delete from the list.
  */
 static inline void list_del_init(struct list_head *entry)
 {
         __list_del(entry->prev, entry->next);
         INIT_LIST_HEAD(entry);
-
--[[linux-2.6.25/__list_del()]]
--[[linux-2.6.25/INIT_LIST_HEAD()]]

 }


*コメント [#i80707a4]
#comment

トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS