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