Changeset 30eab78 in mainline for uspace/lib/c/generic/adt/list.c


Ignore:
Timestamp:
2017-06-27T17:14:57Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
39b0a51
Parents:
b76ce3f
Message:

Remove remaining differences between kernel and user lists.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/adt/list.c

    rb76ce3f r30eab78  
    6969}
    7070
    71 /** Concatenate two lists
     71/** Moves items of one list into another after the specified item.
    7272 *
    73  * Concatenate lists @a list1 and @a list2, producing a single
    74  * list @a list1 containing items from both (in @a list1, @a list2
    75  * order) and empty list @a list2.
     73 * Inserts all items of @a list after item at @a pos in another list.
     74 * Both lists may be empty.
    7675 *
    77  * @param list1         First list and concatenated output
    78  * @param list2         Second list and empty output.
    79  *
     76 * @param list Source list to move after pos. Empty afterwards.
     77 * @param pos Source items will be placed after this item.
    8078 */
    81 void list_concat(list_t *list1, list_t *list2)
     79void list_splice(list_t *list, link_t *pos)
    8280{
    83         if (list_empty(list2))
     81        if (list_empty(list))
    8482                return;
    85 
    86         list2->head.next->prev = list1->head.prev;
    87         list2->head.prev->next = &list1->head;
    88         list1->head.prev->next = list2->head.next;
    89         list1->head.prev = list2->head.prev;
    90         list_initialize(list2);
     83       
     84        /* Attach list to destination. */
     85        list->head.next->prev = pos;
     86        list->head.prev->next = pos->next;
     87       
     88        /* Link destination list to the added list. */
     89        pos->next->prev = list->head.prev;
     90        pos->next = list->head.next;
     91       
     92        list_initialize(list);
    9193}
    9294
Note: See TracChangeset for help on using the changeset viewer.