1LIST_ADD(9) Data Types LIST_ADD(9)
23
4
NAME
6list_add - add a new entry
7
SYNOPSIS
9void list_add(struct list_head * new, struct list_head * head);
10
ARGUMENTS
12new
13new entry to be added
1415
head
16list head to add it after
17
DESCRIPTION
19Insert a new entry after the specified head. This is good for
20implementing stacks.
21
COPYRIGHT
23Kernel Hackers Manual 3.10 June 2019 LIST_ADD(9)