参照元

注意

説明

引数

返り値

参考

実装

/*
 * Delete a list entry by making the prev/next entries
 * point to each other.
 *
 * This is only for internal list manipulation where we know
 * the prev/next entries already!
 */
static inline void __list_del(struct list_head * prev, struct list_head * next)
{
        next->prev = prev;
        prev->next = next;
}

コメント


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