参照元

説明

引数

返り値

参考

実装

/**
 * list_move - delete from one list and add as another's head
 * @list: the entry to move
 * @head: the head that will precede our entry
 */
static inline void list_move(struct list_head *list, struct list_head *head)
{
	__list_del_entry(list);
	list_add(list, head);
}

コメント


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