1. NAME

list_splice_tail_init - join two lists and reinitialise the emptied list

2. SYNOPSIS

void list_splice_tail_init(struct list_head *  list , struct list_head *  head );

3. ARGUMENTS

list
    the new list to add.

head
    the place to add it in the first list.

4. DESCRIPTION

Each of the lists is a queue. The list at list is reinitialised

5. COPYRIGHT