4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
26 #pragma ident "%Z%%M% %I% %E% SMI"
38 head
->back
= &head
->front
;
42 ll_enqueue(llh_t
*head
, ll_t
*data
)
46 head
->back
= &data
->n
;
49 * apply the function func to every element of the ll in sequence. Can
50 * be used to free up the element, so "n" is computed before func is
54 ll_mapf(llh_t
*head
, void (*func
)(void *))
56 ll_t
*t
= head
->front
;
71 ll_dequeue(llh_t
*head
)
75 if (ptr
&& ((head
->front
= ptr
->n
) == NULL
))
76 head
->back
= &head
->front
;
80 ll_traverse(llh_t
*ptr
, int (*func
)(void *, void *), void *user
)
83 ll_t
**prev
= &ptr
->front
;
87 switch (func(t
, user
)) {
95 if ((*prev
= t
->n
) == NULL
)
102 /* Make sure the list isn't corrupt and returns number of list items */
104 ll_check(llh_t
*head
)
107 ll_t
*ptr
= head
->front
;
108 ll_t
**prev
= &head
->front
;
115 assert(head
->back
== prev
);