Blame


1 83f0f95a 2022-09-29 op /* $OpenBSD: queue.h,v 1.46 2020/12/30 13:33:12 millert Exp $ */
2 83f0f95a 2022-09-29 op /* $NetBSD: queue.h,v 1.11 1996/05/16 05:17:14 mycroft Exp $ */
3 83f0f95a 2022-09-29 op
4 83f0f95a 2022-09-29 op /*
5 83f0f95a 2022-09-29 op * Copyright (c) 1991, 1993
6 83f0f95a 2022-09-29 op * The Regents of the University of California. All rights reserved.
7 83f0f95a 2022-09-29 op *
8 83f0f95a 2022-09-29 op * Redistribution and use in source and binary forms, with or without
9 83f0f95a 2022-09-29 op * modification, are permitted provided that the following conditions
10 83f0f95a 2022-09-29 op * are met:
11 83f0f95a 2022-09-29 op * 1. Redistributions of source code must retain the above copyright
12 83f0f95a 2022-09-29 op * notice, this list of conditions and the following disclaimer.
13 83f0f95a 2022-09-29 op * 2. Redistributions in binary form must reproduce the above copyright
14 83f0f95a 2022-09-29 op * notice, this list of conditions and the following disclaimer in the
15 83f0f95a 2022-09-29 op * documentation and/or other materials provided with the distribution.
16 83f0f95a 2022-09-29 op * 3. Neither the name of the University nor the names of its contributors
17 83f0f95a 2022-09-29 op * may be used to endorse or promote products derived from this software
18 83f0f95a 2022-09-29 op * without specific prior written permission.
19 83f0f95a 2022-09-29 op *
20 83f0f95a 2022-09-29 op * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 83f0f95a 2022-09-29 op * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 83f0f95a 2022-09-29 op * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 83f0f95a 2022-09-29 op * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 83f0f95a 2022-09-29 op * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 83f0f95a 2022-09-29 op * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 83f0f95a 2022-09-29 op * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 83f0f95a 2022-09-29 op * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 83f0f95a 2022-09-29 op * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 83f0f95a 2022-09-29 op * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 83f0f95a 2022-09-29 op * SUCH DAMAGE.
31 83f0f95a 2022-09-29 op *
32 83f0f95a 2022-09-29 op * @(#)queue.h 8.5 (Berkeley) 8/20/94
33 83f0f95a 2022-09-29 op */
34 83f0f95a 2022-09-29 op
35 83f0f95a 2022-09-29 op #ifndef _SYS_QUEUE_H_
36 83f0f95a 2022-09-29 op #define _SYS_QUEUE_H_
37 83f0f95a 2022-09-29 op
38 83f0f95a 2022-09-29 op /*
39 83f0f95a 2022-09-29 op * This file defines five types of data structures: singly-linked lists,
40 83f0f95a 2022-09-29 op * lists, simple queues, tail queues and XOR simple queues.
41 83f0f95a 2022-09-29 op *
42 83f0f95a 2022-09-29 op *
43 83f0f95a 2022-09-29 op * A singly-linked list is headed by a single forward pointer. The elements
44 83f0f95a 2022-09-29 op * are singly linked for minimum space and pointer manipulation overhead at
45 83f0f95a 2022-09-29 op * the expense of O(n) removal for arbitrary elements. New elements can be
46 83f0f95a 2022-09-29 op * added to the list after an existing element or at the head of the list.
47 83f0f95a 2022-09-29 op * Elements being removed from the head of the list should use the explicit
48 83f0f95a 2022-09-29 op * macro for this purpose for optimum efficiency. A singly-linked list may
49 83f0f95a 2022-09-29 op * only be traversed in the forward direction. Singly-linked lists are ideal
50 83f0f95a 2022-09-29 op * for applications with large datasets and few or no removals or for
51 83f0f95a 2022-09-29 op * implementing a LIFO queue.
52 83f0f95a 2022-09-29 op *
53 83f0f95a 2022-09-29 op * A list is headed by a single forward pointer (or an array of forward
54 83f0f95a 2022-09-29 op * pointers for a hash table header). The elements are doubly linked
55 83f0f95a 2022-09-29 op * so that an arbitrary element can be removed without a need to
56 83f0f95a 2022-09-29 op * traverse the list. New elements can be added to the list before
57 83f0f95a 2022-09-29 op * or after an existing element or at the head of the list. A list
58 83f0f95a 2022-09-29 op * may only be traversed in the forward direction.
59 83f0f95a 2022-09-29 op *
60 83f0f95a 2022-09-29 op * A simple queue is headed by a pair of pointers, one to the head of the
61 83f0f95a 2022-09-29 op * list and the other to the tail of the list. The elements are singly
62 83f0f95a 2022-09-29 op * linked to save space, so elements can only be removed from the
63 83f0f95a 2022-09-29 op * head of the list. New elements can be added to the list before or after
64 83f0f95a 2022-09-29 op * an existing element, at the head of the list, or at the end of the
65 83f0f95a 2022-09-29 op * list. A simple queue may only be traversed in the forward direction.
66 83f0f95a 2022-09-29 op *
67 83f0f95a 2022-09-29 op * A tail queue is headed by a pair of pointers, one to the head of the
68 83f0f95a 2022-09-29 op * list and the other to the tail of the list. The elements are doubly
69 83f0f95a 2022-09-29 op * linked so that an arbitrary element can be removed without a need to
70 83f0f95a 2022-09-29 op * traverse the list. New elements can be added to the list before or
71 83f0f95a 2022-09-29 op * after an existing element, at the head of the list, or at the end of
72 83f0f95a 2022-09-29 op * the list. A tail queue may be traversed in either direction.
73 83f0f95a 2022-09-29 op *
74 83f0f95a 2022-09-29 op * An XOR simple queue is used in the same way as a regular simple queue.
75 83f0f95a 2022-09-29 op * The difference is that the head structure also includes a "cookie" that
76 83f0f95a 2022-09-29 op * is XOR'd with the queue pointer (first, last or next) to generate the
77 83f0f95a 2022-09-29 op * real pointer value.
78 83f0f95a 2022-09-29 op *
79 83f0f95a 2022-09-29 op * For details on the use of these macros, see the queue(3) manual page.
80 83f0f95a 2022-09-29 op */
81 83f0f95a 2022-09-29 op
82 83f0f95a 2022-09-29 op #if defined(QUEUE_MACRO_DEBUG) || (defined(_KERNEL) && defined(DIAGNOSTIC))
83 83f0f95a 2022-09-29 op #define _Q_INVALID ((void *)-1)
84 83f0f95a 2022-09-29 op #define _Q_INVALIDATE(a) (a) = _Q_INVALID
85 83f0f95a 2022-09-29 op #else
86 83f0f95a 2022-09-29 op #define _Q_INVALIDATE(a)
87 83f0f95a 2022-09-29 op #endif
88 83f0f95a 2022-09-29 op
89 83f0f95a 2022-09-29 op /*
90 83f0f95a 2022-09-29 op * Singly-linked List definitions.
91 83f0f95a 2022-09-29 op */
92 83f0f95a 2022-09-29 op #define SLIST_HEAD(name, type) \
93 83f0f95a 2022-09-29 op struct name { \
94 83f0f95a 2022-09-29 op struct type *slh_first; /* first element */ \
95 83f0f95a 2022-09-29 op }
96 83f0f95a 2022-09-29 op
97 83f0f95a 2022-09-29 op #define SLIST_HEAD_INITIALIZER(head) \
98 83f0f95a 2022-09-29 op { NULL }
99 83f0f95a 2022-09-29 op
100 83f0f95a 2022-09-29 op #define SLIST_ENTRY(type) \
101 83f0f95a 2022-09-29 op struct { \
102 83f0f95a 2022-09-29 op struct type *sle_next; /* next element */ \
103 83f0f95a 2022-09-29 op }
104 83f0f95a 2022-09-29 op
105 83f0f95a 2022-09-29 op /*
106 83f0f95a 2022-09-29 op * Singly-linked List access methods.
107 83f0f95a 2022-09-29 op */
108 83f0f95a 2022-09-29 op #define SLIST_FIRST(head) ((head)->slh_first)
109 83f0f95a 2022-09-29 op #define SLIST_END(head) NULL
110 83f0f95a 2022-09-29 op #define SLIST_EMPTY(head) (SLIST_FIRST(head) == SLIST_END(head))
111 83f0f95a 2022-09-29 op #define SLIST_NEXT(elm, field) ((elm)->field.sle_next)
112 83f0f95a 2022-09-29 op
113 83f0f95a 2022-09-29 op #define SLIST_FOREACH(var, head, field) \
114 83f0f95a 2022-09-29 op for((var) = SLIST_FIRST(head); \
115 83f0f95a 2022-09-29 op (var) != SLIST_END(head); \
116 83f0f95a 2022-09-29 op (var) = SLIST_NEXT(var, field))
117 83f0f95a 2022-09-29 op
118 83f0f95a 2022-09-29 op #define SLIST_FOREACH_SAFE(var, head, field, tvar) \
119 83f0f95a 2022-09-29 op for ((var) = SLIST_FIRST(head); \
120 83f0f95a 2022-09-29 op (var) && ((tvar) = SLIST_NEXT(var, field), 1); \
121 83f0f95a 2022-09-29 op (var) = (tvar))
122 83f0f95a 2022-09-29 op
123 83f0f95a 2022-09-29 op /*
124 83f0f95a 2022-09-29 op * Singly-linked List functions.
125 83f0f95a 2022-09-29 op */
126 83f0f95a 2022-09-29 op #define SLIST_INIT(head) { \
127 83f0f95a 2022-09-29 op SLIST_FIRST(head) = SLIST_END(head); \
128 83f0f95a 2022-09-29 op }
129 83f0f95a 2022-09-29 op
130 83f0f95a 2022-09-29 op #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \
131 83f0f95a 2022-09-29 op (elm)->field.sle_next = (slistelm)->field.sle_next; \
132 83f0f95a 2022-09-29 op (slistelm)->field.sle_next = (elm); \
133 83f0f95a 2022-09-29 op } while (0)
134 83f0f95a 2022-09-29 op
135 83f0f95a 2022-09-29 op #define SLIST_INSERT_HEAD(head, elm, field) do { \
136 83f0f95a 2022-09-29 op (elm)->field.sle_next = (head)->slh_first; \
137 83f0f95a 2022-09-29 op (head)->slh_first = (elm); \
138 83f0f95a 2022-09-29 op } while (0)
139 83f0f95a 2022-09-29 op
140 83f0f95a 2022-09-29 op #define SLIST_REMOVE_AFTER(elm, field) do { \
141 83f0f95a 2022-09-29 op (elm)->field.sle_next = (elm)->field.sle_next->field.sle_next; \
142 83f0f95a 2022-09-29 op } while (0)
143 83f0f95a 2022-09-29 op
144 83f0f95a 2022-09-29 op #define SLIST_REMOVE_HEAD(head, field) do { \
145 83f0f95a 2022-09-29 op (head)->slh_first = (head)->slh_first->field.sle_next; \
146 83f0f95a 2022-09-29 op } while (0)
147 83f0f95a 2022-09-29 op
148 83f0f95a 2022-09-29 op #define SLIST_REMOVE(head, elm, type, field) do { \
149 83f0f95a 2022-09-29 op if ((head)->slh_first == (elm)) { \
150 83f0f95a 2022-09-29 op SLIST_REMOVE_HEAD((head), field); \
151 83f0f95a 2022-09-29 op } else { \
152 83f0f95a 2022-09-29 op struct type *curelm = (head)->slh_first; \
153 83f0f95a 2022-09-29 op \
154 83f0f95a 2022-09-29 op while (curelm->field.sle_next != (elm)) \
155 83f0f95a 2022-09-29 op curelm = curelm->field.sle_next; \
156 83f0f95a 2022-09-29 op curelm->field.sle_next = \
157 83f0f95a 2022-09-29 op curelm->field.sle_next->field.sle_next; \
158 83f0f95a 2022-09-29 op } \
159 83f0f95a 2022-09-29 op _Q_INVALIDATE((elm)->field.sle_next); \
160 83f0f95a 2022-09-29 op } while (0)
161 83f0f95a 2022-09-29 op
162 83f0f95a 2022-09-29 op /*
163 83f0f95a 2022-09-29 op * List definitions.
164 83f0f95a 2022-09-29 op */
165 83f0f95a 2022-09-29 op #define LIST_HEAD(name, type) \
166 83f0f95a 2022-09-29 op struct name { \
167 83f0f95a 2022-09-29 op struct type *lh_first; /* first element */ \
168 83f0f95a 2022-09-29 op }
169 83f0f95a 2022-09-29 op
170 83f0f95a 2022-09-29 op #define LIST_HEAD_INITIALIZER(head) \
171 83f0f95a 2022-09-29 op { NULL }
172 83f0f95a 2022-09-29 op
173 83f0f95a 2022-09-29 op #define LIST_ENTRY(type) \
174 83f0f95a 2022-09-29 op struct { \
175 83f0f95a 2022-09-29 op struct type *le_next; /* next element */ \
176 83f0f95a 2022-09-29 op struct type **le_prev; /* address of previous next element */ \
177 83f0f95a 2022-09-29 op }
178 83f0f95a 2022-09-29 op
179 83f0f95a 2022-09-29 op /*
180 83f0f95a 2022-09-29 op * List access methods.
181 83f0f95a 2022-09-29 op */
182 83f0f95a 2022-09-29 op #define LIST_FIRST(head) ((head)->lh_first)
183 83f0f95a 2022-09-29 op #define LIST_END(head) NULL
184 83f0f95a 2022-09-29 op #define LIST_EMPTY(head) (LIST_FIRST(head) == LIST_END(head))
185 83f0f95a 2022-09-29 op #define LIST_NEXT(elm, field) ((elm)->field.le_next)
186 83f0f95a 2022-09-29 op
187 83f0f95a 2022-09-29 op #define LIST_FOREACH(var, head, field) \
188 83f0f95a 2022-09-29 op for((var) = LIST_FIRST(head); \
189 83f0f95a 2022-09-29 op (var)!= LIST_END(head); \
190 83f0f95a 2022-09-29 op (var) = LIST_NEXT(var, field))
191 83f0f95a 2022-09-29 op
192 83f0f95a 2022-09-29 op #define LIST_FOREACH_SAFE(var, head, field, tvar) \
193 83f0f95a 2022-09-29 op for ((var) = LIST_FIRST(head); \
194 83f0f95a 2022-09-29 op (var) && ((tvar) = LIST_NEXT(var, field), 1); \
195 83f0f95a 2022-09-29 op (var) = (tvar))
196 83f0f95a 2022-09-29 op
197 83f0f95a 2022-09-29 op /*
198 83f0f95a 2022-09-29 op * List functions.
199 83f0f95a 2022-09-29 op */
200 83f0f95a 2022-09-29 op #define LIST_INIT(head) do { \
201 83f0f95a 2022-09-29 op LIST_FIRST(head) = LIST_END(head); \
202 83f0f95a 2022-09-29 op } while (0)
203 83f0f95a 2022-09-29 op
204 83f0f95a 2022-09-29 op #define LIST_INSERT_AFTER(listelm, elm, field) do { \
205 83f0f95a 2022-09-29 op if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
206 83f0f95a 2022-09-29 op (listelm)->field.le_next->field.le_prev = \
207 83f0f95a 2022-09-29 op &(elm)->field.le_next; \
208 83f0f95a 2022-09-29 op (listelm)->field.le_next = (elm); \
209 83f0f95a 2022-09-29 op (elm)->field.le_prev = &(listelm)->field.le_next; \
210 83f0f95a 2022-09-29 op } while (0)
211 83f0f95a 2022-09-29 op
212 83f0f95a 2022-09-29 op #define LIST_INSERT_BEFORE(listelm, elm, field) do { \
213 83f0f95a 2022-09-29 op (elm)->field.le_prev = (listelm)->field.le_prev; \
214 83f0f95a 2022-09-29 op (elm)->field.le_next = (listelm); \
215 83f0f95a 2022-09-29 op *(listelm)->field.le_prev = (elm); \
216 83f0f95a 2022-09-29 op (listelm)->field.le_prev = &(elm)->field.le_next; \
217 83f0f95a 2022-09-29 op } while (0)
218 83f0f95a 2022-09-29 op
219 83f0f95a 2022-09-29 op #define LIST_INSERT_HEAD(head, elm, field) do { \
220 83f0f95a 2022-09-29 op if (((elm)->field.le_next = (head)->lh_first) != NULL) \
221 83f0f95a 2022-09-29 op (head)->lh_first->field.le_prev = &(elm)->field.le_next;\
222 83f0f95a 2022-09-29 op (head)->lh_first = (elm); \
223 83f0f95a 2022-09-29 op (elm)->field.le_prev = &(head)->lh_first; \
224 83f0f95a 2022-09-29 op } while (0)
225 83f0f95a 2022-09-29 op
226 83f0f95a 2022-09-29 op #define LIST_REMOVE(elm, field) do { \
227 83f0f95a 2022-09-29 op if ((elm)->field.le_next != NULL) \
228 83f0f95a 2022-09-29 op (elm)->field.le_next->field.le_prev = \
229 83f0f95a 2022-09-29 op (elm)->field.le_prev; \
230 83f0f95a 2022-09-29 op *(elm)->field.le_prev = (elm)->field.le_next; \
231 83f0f95a 2022-09-29 op _Q_INVALIDATE((elm)->field.le_prev); \
232 83f0f95a 2022-09-29 op _Q_INVALIDATE((elm)->field.le_next); \
233 83f0f95a 2022-09-29 op } while (0)
234 83f0f95a 2022-09-29 op
235 83f0f95a 2022-09-29 op #define LIST_REPLACE(elm, elm2, field) do { \
236 83f0f95a 2022-09-29 op if (((elm2)->field.le_next = (elm)->field.le_next) != NULL) \
237 83f0f95a 2022-09-29 op (elm2)->field.le_next->field.le_prev = \
238 83f0f95a 2022-09-29 op &(elm2)->field.le_next; \
239 83f0f95a 2022-09-29 op (elm2)->field.le_prev = (elm)->field.le_prev; \
240 83f0f95a 2022-09-29 op *(elm2)->field.le_prev = (elm2); \
241 83f0f95a 2022-09-29 op _Q_INVALIDATE((elm)->field.le_prev); \
242 83f0f95a 2022-09-29 op _Q_INVALIDATE((elm)->field.le_next); \
243 83f0f95a 2022-09-29 op } while (0)
244 83f0f95a 2022-09-29 op
245 83f0f95a 2022-09-29 op /*
246 83f0f95a 2022-09-29 op * Simple queue definitions.
247 83f0f95a 2022-09-29 op */
248 83f0f95a 2022-09-29 op #define SIMPLEQ_HEAD(name, type) \
249 83f0f95a 2022-09-29 op struct name { \
250 83f0f95a 2022-09-29 op struct type *sqh_first; /* first element */ \
251 83f0f95a 2022-09-29 op struct type **sqh_last; /* addr of last next element */ \
252 83f0f95a 2022-09-29 op }
253 83f0f95a 2022-09-29 op
254 83f0f95a 2022-09-29 op #define SIMPLEQ_HEAD_INITIALIZER(head) \
255 83f0f95a 2022-09-29 op { NULL, &(head).sqh_first }
256 83f0f95a 2022-09-29 op
257 83f0f95a 2022-09-29 op #define SIMPLEQ_ENTRY(type) \
258 83f0f95a 2022-09-29 op struct { \
259 83f0f95a 2022-09-29 op struct type *sqe_next; /* next element */ \
260 83f0f95a 2022-09-29 op }
261 83f0f95a 2022-09-29 op
262 83f0f95a 2022-09-29 op /*
263 83f0f95a 2022-09-29 op * Simple queue access methods.
264 83f0f95a 2022-09-29 op */
265 83f0f95a 2022-09-29 op #define SIMPLEQ_FIRST(head) ((head)->sqh_first)
266 83f0f95a 2022-09-29 op #define SIMPLEQ_END(head) NULL
267 83f0f95a 2022-09-29 op #define SIMPLEQ_EMPTY(head) (SIMPLEQ_FIRST(head) == SIMPLEQ_END(head))
268 83f0f95a 2022-09-29 op #define SIMPLEQ_NEXT(elm, field) ((elm)->field.sqe_next)
269 83f0f95a 2022-09-29 op
270 83f0f95a 2022-09-29 op #define SIMPLEQ_FOREACH(var, head, field) \
271 83f0f95a 2022-09-29 op for((var) = SIMPLEQ_FIRST(head); \
272 83f0f95a 2022-09-29 op (var) != SIMPLEQ_END(head); \
273 83f0f95a 2022-09-29 op (var) = SIMPLEQ_NEXT(var, field))
274 83f0f95a 2022-09-29 op
275 83f0f95a 2022-09-29 op #define SIMPLEQ_FOREACH_SAFE(var, head, field, tvar) \
276 83f0f95a 2022-09-29 op for ((var) = SIMPLEQ_FIRST(head); \
277 83f0f95a 2022-09-29 op (var) && ((tvar) = SIMPLEQ_NEXT(var, field), 1); \
278 83f0f95a 2022-09-29 op (var) = (tvar))
279 83f0f95a 2022-09-29 op
280 83f0f95a 2022-09-29 op /*
281 83f0f95a 2022-09-29 op * Simple queue functions.
282 83f0f95a 2022-09-29 op */
283 83f0f95a 2022-09-29 op #define SIMPLEQ_INIT(head) do { \
284 83f0f95a 2022-09-29 op (head)->sqh_first = NULL; \
285 83f0f95a 2022-09-29 op (head)->sqh_last = &(head)->sqh_first; \
286 83f0f95a 2022-09-29 op } while (0)
287 83f0f95a 2022-09-29 op
288 83f0f95a 2022-09-29 op #define SIMPLEQ_INSERT_HEAD(head, elm, field) do { \
289 83f0f95a 2022-09-29 op if (((elm)->field.sqe_next = (head)->sqh_first) == NULL) \
290 83f0f95a 2022-09-29 op (head)->sqh_last = &(elm)->field.sqe_next; \
291 83f0f95a 2022-09-29 op (head)->sqh_first = (elm); \
292 83f0f95a 2022-09-29 op } while (0)
293 83f0f95a 2022-09-29 op
294 83f0f95a 2022-09-29 op #define SIMPLEQ_INSERT_TAIL(head, elm, field) do { \
295 83f0f95a 2022-09-29 op (elm)->field.sqe_next = NULL; \
296 83f0f95a 2022-09-29 op *(head)->sqh_last = (elm); \
297 83f0f95a 2022-09-29 op (head)->sqh_last = &(elm)->field.sqe_next; \
298 83f0f95a 2022-09-29 op } while (0)
299 83f0f95a 2022-09-29 op
300 83f0f95a 2022-09-29 op #define SIMPLEQ_INSERT_AFTER(head, listelm, elm, field) do { \
301 83f0f95a 2022-09-29 op if (((elm)->field.sqe_next = (listelm)->field.sqe_next) == NULL)\
302 83f0f95a 2022-09-29 op (head)->sqh_last = &(elm)->field.sqe_next; \
303 83f0f95a 2022-09-29 op (listelm)->field.sqe_next = (elm); \
304 83f0f95a 2022-09-29 op } while (0)
305 83f0f95a 2022-09-29 op
306 83f0f95a 2022-09-29 op #define SIMPLEQ_REMOVE_HEAD(head, field) do { \
307 83f0f95a 2022-09-29 op if (((head)->sqh_first = (head)->sqh_first->field.sqe_next) == NULL) \
308 83f0f95a 2022-09-29 op (head)->sqh_last = &(head)->sqh_first; \
309 83f0f95a 2022-09-29 op } while (0)
310 83f0f95a 2022-09-29 op
311 83f0f95a 2022-09-29 op #define SIMPLEQ_REMOVE_AFTER(head, elm, field) do { \
312 83f0f95a 2022-09-29 op if (((elm)->field.sqe_next = (elm)->field.sqe_next->field.sqe_next) \
313 83f0f95a 2022-09-29 op == NULL) \
314 83f0f95a 2022-09-29 op (head)->sqh_last = &(elm)->field.sqe_next; \
315 83f0f95a 2022-09-29 op } while (0)
316 83f0f95a 2022-09-29 op
317 83f0f95a 2022-09-29 op #define SIMPLEQ_CONCAT(head1, head2) do { \
318 83f0f95a 2022-09-29 op if (!SIMPLEQ_EMPTY((head2))) { \
319 83f0f95a 2022-09-29 op *(head1)->sqh_last = (head2)->sqh_first; \
320 83f0f95a 2022-09-29 op (head1)->sqh_last = (head2)->sqh_last; \
321 83f0f95a 2022-09-29 op SIMPLEQ_INIT((head2)); \
322 83f0f95a 2022-09-29 op } \
323 83f0f95a 2022-09-29 op } while (0)
324 83f0f95a 2022-09-29 op
325 83f0f95a 2022-09-29 op /*
326 83f0f95a 2022-09-29 op * XOR Simple queue definitions.
327 83f0f95a 2022-09-29 op */
328 83f0f95a 2022-09-29 op #define XSIMPLEQ_HEAD(name, type) \
329 83f0f95a 2022-09-29 op struct name { \
330 83f0f95a 2022-09-29 op struct type *sqx_first; /* first element */ \
331 83f0f95a 2022-09-29 op struct type **sqx_last; /* addr of last next element */ \
332 83f0f95a 2022-09-29 op unsigned long sqx_cookie; \
333 83f0f95a 2022-09-29 op }
334 83f0f95a 2022-09-29 op
335 83f0f95a 2022-09-29 op #define XSIMPLEQ_ENTRY(type) \
336 83f0f95a 2022-09-29 op struct { \
337 83f0f95a 2022-09-29 op struct type *sqx_next; /* next element */ \
338 83f0f95a 2022-09-29 op }
339 83f0f95a 2022-09-29 op
340 83f0f95a 2022-09-29 op /*
341 83f0f95a 2022-09-29 op * XOR Simple queue access methods.
342 83f0f95a 2022-09-29 op */
343 83f0f95a 2022-09-29 op #define XSIMPLEQ_XOR(head, ptr) ((__typeof(ptr))((head)->sqx_cookie ^ \
344 83f0f95a 2022-09-29 op (unsigned long)(ptr)))
345 83f0f95a 2022-09-29 op #define XSIMPLEQ_FIRST(head) XSIMPLEQ_XOR(head, ((head)->sqx_first))
346 83f0f95a 2022-09-29 op #define XSIMPLEQ_END(head) NULL
347 83f0f95a 2022-09-29 op #define XSIMPLEQ_EMPTY(head) (XSIMPLEQ_FIRST(head) == XSIMPLEQ_END(head))
348 83f0f95a 2022-09-29 op #define XSIMPLEQ_NEXT(head, elm, field) XSIMPLEQ_XOR(head, ((elm)->field.sqx_next))
349 83f0f95a 2022-09-29 op
350 83f0f95a 2022-09-29 op
351 83f0f95a 2022-09-29 op #define XSIMPLEQ_FOREACH(var, head, field) \
352 83f0f95a 2022-09-29 op for ((var) = XSIMPLEQ_FIRST(head); \
353 83f0f95a 2022-09-29 op (var) != XSIMPLEQ_END(head); \
354 83f0f95a 2022-09-29 op (var) = XSIMPLEQ_NEXT(head, var, field))
355 83f0f95a 2022-09-29 op
356 83f0f95a 2022-09-29 op #define XSIMPLEQ_FOREACH_SAFE(var, head, field, tvar) \
357 83f0f95a 2022-09-29 op for ((var) = XSIMPLEQ_FIRST(head); \
358 83f0f95a 2022-09-29 op (var) && ((tvar) = XSIMPLEQ_NEXT(head, var, field), 1); \
359 83f0f95a 2022-09-29 op (var) = (tvar))
360 83f0f95a 2022-09-29 op
361 83f0f95a 2022-09-29 op /*
362 83f0f95a 2022-09-29 op * XOR Simple queue functions.
363 83f0f95a 2022-09-29 op */
364 83f0f95a 2022-09-29 op #define XSIMPLEQ_INIT(head) do { \
365 83f0f95a 2022-09-29 op arc4random_buf(&(head)->sqx_cookie, sizeof((head)->sqx_cookie)); \
366 83f0f95a 2022-09-29 op (head)->sqx_first = XSIMPLEQ_XOR(head, NULL); \
367 83f0f95a 2022-09-29 op (head)->sqx_last = XSIMPLEQ_XOR(head, &(head)->sqx_first); \
368 83f0f95a 2022-09-29 op } while (0)
369 83f0f95a 2022-09-29 op
370 83f0f95a 2022-09-29 op #define XSIMPLEQ_INSERT_HEAD(head, elm, field) do { \
371 83f0f95a 2022-09-29 op if (((elm)->field.sqx_next = (head)->sqx_first) == \
372 83f0f95a 2022-09-29 op XSIMPLEQ_XOR(head, NULL)) \
373 83f0f95a 2022-09-29 op (head)->sqx_last = XSIMPLEQ_XOR(head, &(elm)->field.sqx_next); \
374 83f0f95a 2022-09-29 op (head)->sqx_first = XSIMPLEQ_XOR(head, (elm)); \
375 83f0f95a 2022-09-29 op } while (0)
376 83f0f95a 2022-09-29 op
377 83f0f95a 2022-09-29 op #define XSIMPLEQ_INSERT_TAIL(head, elm, field) do { \
378 83f0f95a 2022-09-29 op (elm)->field.sqx_next = XSIMPLEQ_XOR(head, NULL); \
379 83f0f95a 2022-09-29 op *(XSIMPLEQ_XOR(head, (head)->sqx_last)) = XSIMPLEQ_XOR(head, (elm)); \
380 83f0f95a 2022-09-29 op (head)->sqx_last = XSIMPLEQ_XOR(head, &(elm)->field.sqx_next); \
381 83f0f95a 2022-09-29 op } while (0)
382 83f0f95a 2022-09-29 op
383 83f0f95a 2022-09-29 op #define XSIMPLEQ_INSERT_AFTER(head, listelm, elm, field) do { \
384 83f0f95a 2022-09-29 op if (((elm)->field.sqx_next = (listelm)->field.sqx_next) == \
385 83f0f95a 2022-09-29 op XSIMPLEQ_XOR(head, NULL)) \
386 83f0f95a 2022-09-29 op (head)->sqx_last = XSIMPLEQ_XOR(head, &(elm)->field.sqx_next); \
387 83f0f95a 2022-09-29 op (listelm)->field.sqx_next = XSIMPLEQ_XOR(head, (elm)); \
388 83f0f95a 2022-09-29 op } while (0)
389 83f0f95a 2022-09-29 op
390 83f0f95a 2022-09-29 op #define XSIMPLEQ_REMOVE_HEAD(head, field) do { \
391 83f0f95a 2022-09-29 op if (((head)->sqx_first = XSIMPLEQ_XOR(head, \
392 83f0f95a 2022-09-29 op (head)->sqx_first)->field.sqx_next) == XSIMPLEQ_XOR(head, NULL)) \
393 83f0f95a 2022-09-29 op (head)->sqx_last = XSIMPLEQ_XOR(head, &(head)->sqx_first); \
394 83f0f95a 2022-09-29 op } while (0)
395 83f0f95a 2022-09-29 op
396 83f0f95a 2022-09-29 op #define XSIMPLEQ_REMOVE_AFTER(head, elm, field) do { \
397 83f0f95a 2022-09-29 op if (((elm)->field.sqx_next = XSIMPLEQ_XOR(head, \
398 83f0f95a 2022-09-29 op (elm)->field.sqx_next)->field.sqx_next) \
399 83f0f95a 2022-09-29 op == XSIMPLEQ_XOR(head, NULL)) \
400 83f0f95a 2022-09-29 op (head)->sqx_last = \
401 83f0f95a 2022-09-29 op XSIMPLEQ_XOR(head, &(elm)->field.sqx_next); \
402 83f0f95a 2022-09-29 op } while (0)
403 83f0f95a 2022-09-29 op
404 83f0f95a 2022-09-29 op
405 83f0f95a 2022-09-29 op /*
406 83f0f95a 2022-09-29 op * Tail queue definitions.
407 83f0f95a 2022-09-29 op */
408 83f0f95a 2022-09-29 op #define TAILQ_HEAD(name, type) \
409 83f0f95a 2022-09-29 op struct name { \
410 83f0f95a 2022-09-29 op struct type *tqh_first; /* first element */ \
411 83f0f95a 2022-09-29 op struct type **tqh_last; /* addr of last next element */ \
412 83f0f95a 2022-09-29 op }
413 83f0f95a 2022-09-29 op
414 83f0f95a 2022-09-29 op #define TAILQ_HEAD_INITIALIZER(head) \
415 83f0f95a 2022-09-29 op { NULL, &(head).tqh_first }
416 83f0f95a 2022-09-29 op
417 83f0f95a 2022-09-29 op #define TAILQ_ENTRY(type) \
418 83f0f95a 2022-09-29 op struct { \
419 83f0f95a 2022-09-29 op struct type *tqe_next; /* next element */ \
420 83f0f95a 2022-09-29 op struct type **tqe_prev; /* address of previous next element */ \
421 83f0f95a 2022-09-29 op }
422 83f0f95a 2022-09-29 op
423 83f0f95a 2022-09-29 op /*
424 83f0f95a 2022-09-29 op * Tail queue access methods.
425 83f0f95a 2022-09-29 op */
426 83f0f95a 2022-09-29 op #define TAILQ_FIRST(head) ((head)->tqh_first)
427 83f0f95a 2022-09-29 op #define TAILQ_END(head) NULL
428 83f0f95a 2022-09-29 op #define TAILQ_NEXT(elm, field) ((elm)->field.tqe_next)
429 83f0f95a 2022-09-29 op #define TAILQ_LAST(head, headname) \
430 83f0f95a 2022-09-29 op (*(((struct headname *)((head)->tqh_last))->tqh_last))
431 83f0f95a 2022-09-29 op /* XXX */
432 83f0f95a 2022-09-29 op #define TAILQ_PREV(elm, headname, field) \
433 83f0f95a 2022-09-29 op (*(((struct headname *)((elm)->field.tqe_prev))->tqh_last))
434 83f0f95a 2022-09-29 op #define TAILQ_EMPTY(head) \
435 83f0f95a 2022-09-29 op (TAILQ_FIRST(head) == TAILQ_END(head))
436 83f0f95a 2022-09-29 op
437 83f0f95a 2022-09-29 op #define TAILQ_FOREACH(var, head, field) \
438 83f0f95a 2022-09-29 op for((var) = TAILQ_FIRST(head); \
439 83f0f95a 2022-09-29 op (var) != TAILQ_END(head); \
440 83f0f95a 2022-09-29 op (var) = TAILQ_NEXT(var, field))
441 83f0f95a 2022-09-29 op
442 83f0f95a 2022-09-29 op #define TAILQ_FOREACH_SAFE(var, head, field, tvar) \
443 83f0f95a 2022-09-29 op for ((var) = TAILQ_FIRST(head); \
444 83f0f95a 2022-09-29 op (var) != TAILQ_END(head) && \
445 83f0f95a 2022-09-29 op ((tvar) = TAILQ_NEXT(var, field), 1); \
446 83f0f95a 2022-09-29 op (var) = (tvar))
447 83f0f95a 2022-09-29 op
448 83f0f95a 2022-09-29 op
449 83f0f95a 2022-09-29 op #define TAILQ_FOREACH_REVERSE(var, head, headname, field) \
450 83f0f95a 2022-09-29 op for((var) = TAILQ_LAST(head, headname); \
451 83f0f95a 2022-09-29 op (var) != TAILQ_END(head); \
452 83f0f95a 2022-09-29 op (var) = TAILQ_PREV(var, headname, field))
453 83f0f95a 2022-09-29 op
454 83f0f95a 2022-09-29 op #define TAILQ_FOREACH_REVERSE_SAFE(var, head, headname, field, tvar) \
455 83f0f95a 2022-09-29 op for ((var) = TAILQ_LAST(head, headname); \
456 83f0f95a 2022-09-29 op (var) != TAILQ_END(head) && \
457 83f0f95a 2022-09-29 op ((tvar) = TAILQ_PREV(var, headname, field), 1); \
458 83f0f95a 2022-09-29 op (var) = (tvar))
459 83f0f95a 2022-09-29 op
460 83f0f95a 2022-09-29 op /*
461 83f0f95a 2022-09-29 op * Tail queue functions.
462 83f0f95a 2022-09-29 op */
463 83f0f95a 2022-09-29 op #define TAILQ_INIT(head) do { \
464 83f0f95a 2022-09-29 op (head)->tqh_first = NULL; \
465 83f0f95a 2022-09-29 op (head)->tqh_last = &(head)->tqh_first; \
466 83f0f95a 2022-09-29 op } while (0)
467 83f0f95a 2022-09-29 op
468 83f0f95a 2022-09-29 op #define TAILQ_INSERT_HEAD(head, elm, field) do { \
469 83f0f95a 2022-09-29 op if (((elm)->field.tqe_next = (head)->tqh_first) != NULL) \
470 83f0f95a 2022-09-29 op (head)->tqh_first->field.tqe_prev = \
471 83f0f95a 2022-09-29 op &(elm)->field.tqe_next; \
472 83f0f95a 2022-09-29 op else \
473 83f0f95a 2022-09-29 op (head)->tqh_last = &(elm)->field.tqe_next; \
474 83f0f95a 2022-09-29 op (head)->tqh_first = (elm); \
475 83f0f95a 2022-09-29 op (elm)->field.tqe_prev = &(head)->tqh_first; \
476 83f0f95a 2022-09-29 op } while (0)
477 83f0f95a 2022-09-29 op
478 83f0f95a 2022-09-29 op #define TAILQ_INSERT_TAIL(head, elm, field) do { \
479 83f0f95a 2022-09-29 op (elm)->field.tqe_next = NULL; \
480 83f0f95a 2022-09-29 op (elm)->field.tqe_prev = (head)->tqh_last; \
481 83f0f95a 2022-09-29 op *(head)->tqh_last = (elm); \
482 83f0f95a 2022-09-29 op (head)->tqh_last = &(elm)->field.tqe_next; \
483 83f0f95a 2022-09-29 op } while (0)
484 83f0f95a 2022-09-29 op
485 83f0f95a 2022-09-29 op #define TAILQ_INSERT_AFTER(head, listelm, elm, field) do { \
486 83f0f95a 2022-09-29 op if (((elm)->field.tqe_next = (listelm)->field.tqe_next) != NULL)\
487 83f0f95a 2022-09-29 op (elm)->field.tqe_next->field.tqe_prev = \
488 83f0f95a 2022-09-29 op &(elm)->field.tqe_next; \
489 83f0f95a 2022-09-29 op else \
490 83f0f95a 2022-09-29 op (head)->tqh_last = &(elm)->field.tqe_next; \
491 83f0f95a 2022-09-29 op (listelm)->field.tqe_next = (elm); \
492 83f0f95a 2022-09-29 op (elm)->field.tqe_prev = &(listelm)->field.tqe_next; \
493 83f0f95a 2022-09-29 op } while (0)
494 83f0f95a 2022-09-29 op
495 83f0f95a 2022-09-29 op #define TAILQ_INSERT_BEFORE(listelm, elm, field) do { \
496 83f0f95a 2022-09-29 op (elm)->field.tqe_prev = (listelm)->field.tqe_prev; \
497 83f0f95a 2022-09-29 op (elm)->field.tqe_next = (listelm); \
498 83f0f95a 2022-09-29 op *(listelm)->field.tqe_prev = (elm); \
499 83f0f95a 2022-09-29 op (listelm)->field.tqe_prev = &(elm)->field.tqe_next; \
500 83f0f95a 2022-09-29 op } while (0)
501 83f0f95a 2022-09-29 op
502 83f0f95a 2022-09-29 op #define TAILQ_REMOVE(head, elm, field) do { \
503 83f0f95a 2022-09-29 op if (((elm)->field.tqe_next) != NULL) \
504 83f0f95a 2022-09-29 op (elm)->field.tqe_next->field.tqe_prev = \
505 83f0f95a 2022-09-29 op (elm)->field.tqe_prev; \
506 83f0f95a 2022-09-29 op else \
507 83f0f95a 2022-09-29 op (head)->tqh_last = (elm)->field.tqe_prev; \
508 83f0f95a 2022-09-29 op *(elm)->field.tqe_prev = (elm)->field.tqe_next; \
509 83f0f95a 2022-09-29 op _Q_INVALIDATE((elm)->field.tqe_prev); \
510 83f0f95a 2022-09-29 op _Q_INVALIDATE((elm)->field.tqe_next); \
511 83f0f95a 2022-09-29 op } while (0)
512 83f0f95a 2022-09-29 op
513 83f0f95a 2022-09-29 op #define TAILQ_REPLACE(head, elm, elm2, field) do { \
514 83f0f95a 2022-09-29 op if (((elm2)->field.tqe_next = (elm)->field.tqe_next) != NULL) \
515 83f0f95a 2022-09-29 op (elm2)->field.tqe_next->field.tqe_prev = \
516 83f0f95a 2022-09-29 op &(elm2)->field.tqe_next; \
517 83f0f95a 2022-09-29 op else \
518 83f0f95a 2022-09-29 op (head)->tqh_last = &(elm2)->field.tqe_next; \
519 83f0f95a 2022-09-29 op (elm2)->field.tqe_prev = (elm)->field.tqe_prev; \
520 83f0f95a 2022-09-29 op *(elm2)->field.tqe_prev = (elm2); \
521 83f0f95a 2022-09-29 op _Q_INVALIDATE((elm)->field.tqe_prev); \
522 83f0f95a 2022-09-29 op _Q_INVALIDATE((elm)->field.tqe_next); \
523 83f0f95a 2022-09-29 op } while (0)
524 83f0f95a 2022-09-29 op
525 83f0f95a 2022-09-29 op #define TAILQ_CONCAT(head1, head2, field) do { \
526 83f0f95a 2022-09-29 op if (!TAILQ_EMPTY(head2)) { \
527 83f0f95a 2022-09-29 op *(head1)->tqh_last = (head2)->tqh_first; \
528 83f0f95a 2022-09-29 op (head2)->tqh_first->field.tqe_prev = (head1)->tqh_last; \
529 83f0f95a 2022-09-29 op (head1)->tqh_last = (head2)->tqh_last; \
530 83f0f95a 2022-09-29 op TAILQ_INIT((head2)); \
531 83f0f95a 2022-09-29 op } \
532 83f0f95a 2022-09-29 op } while (0)
533 83f0f95a 2022-09-29 op
534 83f0f95a 2022-09-29 op /*
535 83f0f95a 2022-09-29 op * Singly-linked Tail queue declarations.
536 83f0f95a 2022-09-29 op */
537 83f0f95a 2022-09-29 op #define STAILQ_HEAD(name, type) \
538 83f0f95a 2022-09-29 op struct name { \
539 83f0f95a 2022-09-29 op struct type *stqh_first; /* first element */ \
540 83f0f95a 2022-09-29 op struct type **stqh_last; /* addr of last next element */ \
541 83f0f95a 2022-09-29 op }
542 83f0f95a 2022-09-29 op
543 83f0f95a 2022-09-29 op #define STAILQ_HEAD_INITIALIZER(head) \
544 83f0f95a 2022-09-29 op { NULL, &(head).stqh_first }
545 83f0f95a 2022-09-29 op
546 83f0f95a 2022-09-29 op #define STAILQ_ENTRY(type) \
547 83f0f95a 2022-09-29 op struct { \
548 83f0f95a 2022-09-29 op struct type *stqe_next; /* next element */ \
549 83f0f95a 2022-09-29 op }
550 83f0f95a 2022-09-29 op
551 83f0f95a 2022-09-29 op /*
552 83f0f95a 2022-09-29 op * Singly-linked Tail queue access methods.
553 83f0f95a 2022-09-29 op */
554 83f0f95a 2022-09-29 op #define STAILQ_FIRST(head) ((head)->stqh_first)
555 83f0f95a 2022-09-29 op #define STAILQ_END(head) NULL
556 83f0f95a 2022-09-29 op #define STAILQ_EMPTY(head) (STAILQ_FIRST(head) == STAILQ_END(head))
557 83f0f95a 2022-09-29 op #define STAILQ_NEXT(elm, field) ((elm)->field.stqe_next)
558 83f0f95a 2022-09-29 op
559 83f0f95a 2022-09-29 op #define STAILQ_FOREACH(var, head, field) \
560 83f0f95a 2022-09-29 op for ((var) = STAILQ_FIRST(head); \
561 83f0f95a 2022-09-29 op (var) != STAILQ_END(head); \
562 83f0f95a 2022-09-29 op (var) = STAILQ_NEXT(var, field))
563 83f0f95a 2022-09-29 op
564 83f0f95a 2022-09-29 op #define STAILQ_FOREACH_SAFE(var, head, field, tvar) \
565 83f0f95a 2022-09-29 op for ((var) = STAILQ_FIRST(head); \
566 83f0f95a 2022-09-29 op (var) && ((tvar) = STAILQ_NEXT(var, field), 1); \
567 83f0f95a 2022-09-29 op (var) = (tvar))
568 83f0f95a 2022-09-29 op
569 83f0f95a 2022-09-29 op /*
570 83f0f95a 2022-09-29 op * Singly-linked Tail queue functions.
571 83f0f95a 2022-09-29 op */
572 83f0f95a 2022-09-29 op #define STAILQ_INIT(head) do { \
573 83f0f95a 2022-09-29 op STAILQ_FIRST((head)) = NULL; \
574 83f0f95a 2022-09-29 op (head)->stqh_last = &STAILQ_FIRST((head)); \
575 83f0f95a 2022-09-29 op } while (0)
576 83f0f95a 2022-09-29 op
577 83f0f95a 2022-09-29 op #define STAILQ_INSERT_HEAD(head, elm, field) do { \
578 83f0f95a 2022-09-29 op if ((STAILQ_NEXT((elm), field) = STAILQ_FIRST((head))) == NULL) \
579 83f0f95a 2022-09-29 op (head)->stqh_last = &STAILQ_NEXT((elm), field); \
580 83f0f95a 2022-09-29 op STAILQ_FIRST((head)) = (elm); \
581 83f0f95a 2022-09-29 op } while (0)
582 83f0f95a 2022-09-29 op
583 83f0f95a 2022-09-29 op #define STAILQ_INSERT_TAIL(head, elm, field) do { \
584 83f0f95a 2022-09-29 op STAILQ_NEXT((elm), field) = NULL; \
585 83f0f95a 2022-09-29 op *(head)->stqh_last = (elm); \
586 83f0f95a 2022-09-29 op (head)->stqh_last = &STAILQ_NEXT((elm), field); \
587 83f0f95a 2022-09-29 op } while (0)
588 83f0f95a 2022-09-29 op
589 83f0f95a 2022-09-29 op #define STAILQ_INSERT_AFTER(head, listelm, elm, field) do { \
590 83f0f95a 2022-09-29 op if ((STAILQ_NEXT((elm), field) = STAILQ_NEXT((elm), field)) == NULL)\
591 83f0f95a 2022-09-29 op (head)->stqh_last = &STAILQ_NEXT((elm), field); \
592 83f0f95a 2022-09-29 op STAILQ_NEXT((elm), field) = (elm); \
593 83f0f95a 2022-09-29 op } while (0)
594 83f0f95a 2022-09-29 op
595 83f0f95a 2022-09-29 op #define STAILQ_REMOVE_HEAD(head, field) do { \
596 83f0f95a 2022-09-29 op if ((STAILQ_FIRST((head)) = \
597 83f0f95a 2022-09-29 op STAILQ_NEXT(STAILQ_FIRST((head)), field)) == NULL) \
598 83f0f95a 2022-09-29 op (head)->stqh_last = &STAILQ_FIRST((head)); \
599 83f0f95a 2022-09-29 op } while (0)
600 83f0f95a 2022-09-29 op
601 83f0f95a 2022-09-29 op #define STAILQ_REMOVE_AFTER(head, elm, field) do { \
602 83f0f95a 2022-09-29 op if ((STAILQ_NEXT(elm, field) = \
603 83f0f95a 2022-09-29 op STAILQ_NEXT(STAILQ_NEXT(elm, field), field)) == NULL) \
604 83f0f95a 2022-09-29 op (head)->stqh_last = &STAILQ_NEXT((elm), field); \
605 83f0f95a 2022-09-29 op } while (0)
606 83f0f95a 2022-09-29 op
607 83f0f95a 2022-09-29 op #define STAILQ_REMOVE(head, elm, type, field) do { \
608 83f0f95a 2022-09-29 op if (STAILQ_FIRST((head)) == (elm)) { \
609 83f0f95a 2022-09-29 op STAILQ_REMOVE_HEAD((head), field); \
610 83f0f95a 2022-09-29 op } else { \
611 83f0f95a 2022-09-29 op struct type *curelm = (head)->stqh_first; \
612 83f0f95a 2022-09-29 op while (STAILQ_NEXT(curelm, field) != (elm)) \
613 83f0f95a 2022-09-29 op curelm = STAILQ_NEXT(curelm, field); \
614 83f0f95a 2022-09-29 op STAILQ_REMOVE_AFTER(head, curelm, field); \
615 83f0f95a 2022-09-29 op } \
616 83f0f95a 2022-09-29 op } while (0)
617 83f0f95a 2022-09-29 op
618 83f0f95a 2022-09-29 op #define STAILQ_CONCAT(head1, head2) do { \
619 83f0f95a 2022-09-29 op if (!STAILQ_EMPTY((head2))) { \
620 83f0f95a 2022-09-29 op *(head1)->stqh_last = (head2)->stqh_first; \
621 83f0f95a 2022-09-29 op (head1)->stqh_last = (head2)->stqh_last; \
622 83f0f95a 2022-09-29 op STAILQ_INIT((head2)); \
623 83f0f95a 2022-09-29 op } \
624 83f0f95a 2022-09-29 op } while (0)
625 83f0f95a 2022-09-29 op
626 83f0f95a 2022-09-29 op #define STAILQ_LAST(head, type, field) \
627 83f0f95a 2022-09-29 op (STAILQ_EMPTY((head)) ? NULL : \
628 83f0f95a 2022-09-29 op ((struct type *)(void *) \
629 83f0f95a 2022-09-29 op ((char *)((head)->stqh_last) - offsetof(struct type, field))))
630 83f0f95a 2022-09-29 op
631 83f0f95a 2022-09-29 op #endif /* !_SYS_QUEUE_H_ */