queue.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  1. //
  2. // Copyright 2026 Aarav Ravindra Kharade
  3. //
  4. // Licensed under the Apache License, Version 2.0 (the "License");
  5. // you may not use this file except in compliance with the License.
  6. // You may obtain a copy of the License at
  7. //
  8. // http://www.apache.org/licenses/LICENSE-2.0
  9. //
  10. // Unless required by applicable law or agreed to in writing, software
  11. // distributed under the License is distributed on an "AS IS" BASIS,
  12. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. // See the License for the specific language governing permissions and
  14. // limitations under the License.
  15. //
  16. /*
  17. * Copyright (c) 1991, 1993
  18. * The Regents of the University of California. All rights reserved.
  19. *
  20. * Redistribution and use in source and binary forms, with or without
  21. * modification, are permitted provided that the following conditions
  22. * are met:
  23. * 1. Redistributions of source code must retain the above copyright
  24. * notice, this list of conditions and the following disclaimer.
  25. * 2. Redistributions in binary form must reproduce the above copyright
  26. * notice, this list of conditions and the following disclaimer in the
  27. * documentation and/or other materials provided with the distribution.
  28. * 3. Neither the name of the University nor the names of its contributors
  29. * may be used to endorse or promote products derived from this software
  30. * without specific prior written permission.
  31. *
  32. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  33. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  34. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  35. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  36. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  37. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  38. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  39. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  40. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  41. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  42. * SUCH DAMAGE.
  43. *
  44. * @(#)queue.h 8.5 (Berkeley) 8/20/94
  45. */
  46. #ifndef _SYS_QUEUE_H_
  47. #define _SYS_QUEUE_H_
  48. /*
  49. * This file defines five types of data structures: singly-linked lists,
  50. * lists, simple queues, tail queues, and circular queues.
  51. *
  52. * A singly-linked list is headed by a single forward pointer. The
  53. * elements are singly linked for minimum space and pointer manipulation
  54. * overhead at the expense of O(n) removal for arbitrary elements. New
  55. * elements can be added to the list after an existing element or at the
  56. * head of the list. Elements being removed from the head of the list
  57. * should use the explicit macro for this purpose for optimum
  58. * efficiency. A singly-linked list may only be traversed in the forward
  59. * direction. Singly-linked lists are ideal for applications with large
  60. * datasets and few or no removals or for implementing a LIFO queue.
  61. *
  62. * A list is headed by a single forward pointer (or an array of forward
  63. * pointers for a hash table header). The elements are doubly linked
  64. * so that an arbitrary element can be removed without a need to
  65. * traverse the list. New elements can be added to the list before
  66. * or after an existing element or at the head of the list. A list
  67. * may only be traversed in the forward direction.
  68. *
  69. * A simple queue is headed by a pair of pointers, one the head of the
  70. * list and the other to the tail of the list. The elements are singly
  71. * linked to save space, so elements can only be removed from the
  72. * head of the list. New elements can be added to the list after
  73. * an existing element, at the head of the list, or at the end of the
  74. * list. A simple queue may only be traversed in the forward direction.
  75. *
  76. * A tail queue is headed by a pair of pointers, one to the head of the
  77. * list and the other to the tail of the list. The elements are doubly
  78. * linked so that an arbitrary element can be removed without a need to
  79. * traverse the list. New elements can be added to the list before or
  80. * after an existing element, at the head of the list, or at the end of
  81. * the list. A tail queue may be traversed in either direction.
  82. *
  83. * A circle queue is headed by a pair of pointers, one to the head of the
  84. * list and the other to the tail of the list. The elements are doubly
  85. * linked so that an arbitrary element can be removed without a need to
  86. * traverse the list. New elements can be added to the list before or after
  87. * an existing element, at the head of the list, or at the end of the list.
  88. * A circle queue may be traversed in either direction, but has a more
  89. * complex end of list detection.
  90. *
  91. * For details on the use of these macros, see the queue(3) manual page.
  92. */
  93. /*
  94. * List definitions.
  95. */
  96. #define LIST_HEAD(name, type) \
  97. struct name { \
  98. struct type *lh_first; /* first element */ \
  99. }
  100. #define LIST_HEAD_INITIALIZER(head) \
  101. { NULL }
  102. #define LIST_ENTRY(type) \
  103. struct { \
  104. struct type *le_next; /* next element */ \
  105. struct type **le_prev; /* address of previous next element */ \
  106. }
  107. /*
  108. * List functions.
  109. */
  110. #define LIST_INIT(head) do { \
  111. (head)->lh_first = NULL; \
  112. } while (/*CONSTCOND*/0)
  113. #define LIST_INSERT_AFTER(listelm, elm, field) do { \
  114. if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
  115. (listelm)->field.le_next->field.le_prev = \
  116. &(elm)->field.le_next; \
  117. (listelm)->field.le_next = (elm); \
  118. (elm)->field.le_prev = &(listelm)->field.le_next; \
  119. } while (/*CONSTCOND*/0)
  120. #define LIST_INSERT_BEFORE(listelm, elm, field) do { \
  121. (elm)->field.le_prev = (listelm)->field.le_prev; \
  122. (elm)->field.le_next = (listelm); \
  123. *(listelm)->field.le_prev = (elm); \
  124. (listelm)->field.le_prev = &(elm)->field.le_next; \
  125. } while (/*CONSTCOND*/0)
  126. #define LIST_INSERT_HEAD(head, elm, field) do { \
  127. if (((elm)->field.le_next = (head)->lh_first) != NULL) \
  128. (head)->lh_first->field.le_prev = &(elm)->field.le_next;\
  129. (head)->lh_first = (elm); \
  130. (elm)->field.le_prev = &(head)->lh_first; \
  131. } while (/*CONSTCOND*/0)
  132. #define LIST_REMOVE(elm, field) do { \
  133. if ((elm)->field.le_next != NULL) \
  134. (elm)->field.le_next->field.le_prev = \
  135. (elm)->field.le_prev; \
  136. *(elm)->field.le_prev = (elm)->field.le_next; \
  137. } while (/*CONSTCOND*/0)
  138. #define LIST_FOREACH(var, head, field) \
  139. for ((var) = ((head)->lh_first); \
  140. (var); \
  141. (var) = ((var)->field.le_next))
  142. /*
  143. * List access methods.
  144. */
  145. #define LIST_EMPTY(head) ((head)->lh_first == NULL)
  146. #define LIST_FIRST(head) ((head)->lh_first)
  147. #define LIST_NEXT(elm, field) ((elm)->field.le_next)
  148. /*
  149. * Singly-linked List definitions.
  150. */
  151. #define SLIST_HEAD(name, type) \
  152. struct name { \
  153. struct type *slh_first; /* first element */ \
  154. }
  155. #define SLIST_HEAD_INITIALIZER(head) \
  156. { NULL }
  157. #define SLIST_ENTRY(type) \
  158. struct { \
  159. struct type *sle_next; /* next element */ \
  160. }
  161. /*
  162. * Singly-linked List functions.
  163. */
  164. #define SLIST_INIT(head) do { \
  165. (head)->slh_first = NULL; \
  166. } while (/*CONSTCOND*/0)
  167. #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \
  168. (elm)->field.sle_next = (slistelm)->field.sle_next; \
  169. (slistelm)->field.sle_next = (elm); \
  170. } while (/*CONSTCOND*/0)
  171. #define SLIST_INSERT_HEAD(head, elm, field) do { \
  172. (elm)->field.sle_next = (head)->slh_first; \
  173. (head)->slh_first = (elm); \
  174. } while (/*CONSTCOND*/0)
  175. #define SLIST_REMOVE_HEAD(head, field) do { \
  176. (head)->slh_first = (head)->slh_first->field.sle_next; \
  177. } while (/*CONSTCOND*/0)
  178. #define SLIST_REMOVE(head, elm, type, field) do { \
  179. if ((head)->slh_first == (elm)) { \
  180. SLIST_REMOVE_HEAD((head), field); \
  181. } \
  182. else { \
  183. struct type *curelm = (head)->slh_first; \
  184. while(curelm->field.sle_next != (elm)) \
  185. curelm = curelm->field.sle_next; \
  186. curelm->field.sle_next = \
  187. curelm->field.sle_next->field.sle_next; \
  188. } \
  189. } while (/*CONSTCOND*/0)
  190. #define SLIST_FOREACH(var, head, field) \
  191. for((var) = (head)->slh_first; (var); (var) = (var)->field.sle_next)
  192. /*
  193. * Singly-linked List access methods.
  194. */
  195. #define SLIST_EMPTY(head) ((head)->slh_first == NULL)
  196. #define SLIST_FIRST(head) ((head)->slh_first)
  197. #define SLIST_NEXT(elm, field) ((elm)->field.sle_next)
  198. /*
  199. * Singly-linked Tail queue declarations.
  200. */
  201. #define STAILQ_HEAD(name, type) \
  202. struct name { \
  203. struct type *stqh_first; /* first element */ \
  204. struct type **stqh_last; /* addr of last next element */ \
  205. }
  206. #define STAILQ_HEAD_INITIALIZER(head) \
  207. { NULL, &(head).stqh_first }
  208. #define STAILQ_ENTRY(type) \
  209. struct { \
  210. struct type *stqe_next; /* next element */ \
  211. }
  212. /*
  213. * Singly-linked Tail queue functions.
  214. */
  215. #define STAILQ_INIT(head) do { \
  216. (head)->stqh_first = NULL; \
  217. (head)->stqh_last = &(head)->stqh_first; \
  218. } while (/*CONSTCOND*/0)
  219. #define STAILQ_INSERT_HEAD(head, elm, field) do { \
  220. if (((elm)->field.stqe_next = (head)->stqh_first) == NULL) \
  221. (head)->stqh_last = &(elm)->field.stqe_next; \
  222. (head)->stqh_first = (elm); \
  223. } while (/*CONSTCOND*/0)
  224. #define STAILQ_INSERT_TAIL(head, elm, field) do { \
  225. (elm)->field.stqe_next = NULL; \
  226. *(head)->stqh_last = (elm); \
  227. (head)->stqh_last = &(elm)->field.stqe_next; \
  228. } while (/*CONSTCOND*/0)
  229. #define STAILQ_INSERT_AFTER(head, listelm, elm, field) do { \
  230. if (((elm)->field.stqe_next = (listelm)->field.stqe_next) == NULL)\
  231. (head)->stqh_last = &(elm)->field.stqe_next; \
  232. (listelm)->field.stqe_next = (elm); \
  233. } while (/*CONSTCOND*/0)
  234. #define STAILQ_REMOVE_HEAD(head, field) do { \
  235. if (((head)->stqh_first = (head)->stqh_first->field.stqe_next) == NULL) \
  236. (head)->stqh_last = &(head)->stqh_first; \
  237. } while (/*CONSTCOND*/0)
  238. #define STAILQ_REMOVE(head, elm, type, field) do { \
  239. if ((head)->stqh_first == (elm)) { \
  240. STAILQ_REMOVE_HEAD((head), field); \
  241. } else { \
  242. struct type *curelm = (head)->stqh_first; \
  243. while (curelm->field.stqe_next != (elm)) \
  244. curelm = curelm->field.stqe_next; \
  245. if ((curelm->field.stqe_next = \
  246. curelm->field.stqe_next->field.stqe_next) == NULL) \
  247. (head)->stqh_last = &(curelm)->field.stqe_next; \
  248. } \
  249. } while (/*CONSTCOND*/0)
  250. #define STAILQ_FOREACH(var, head, field) \
  251. for ((var) = ((head)->stqh_first); \
  252. (var); \
  253. (var) = ((var)->field.stqe_next))
  254. #define STAILQ_CONCAT(head1, head2) do { \
  255. if (!STAILQ_EMPTY((head2))) { \
  256. *(head1)->stqh_last = (head2)->stqh_first; \
  257. (head1)->stqh_last = (head2)->stqh_last; \
  258. STAILQ_INIT((head2)); \
  259. } \
  260. } while (/*CONSTCOND*/0)
  261. /*
  262. * Singly-linked Tail queue access methods.
  263. */
  264. #define STAILQ_EMPTY(head) ((head)->stqh_first == NULL)
  265. #define STAILQ_FIRST(head) ((head)->stqh_first)
  266. #define STAILQ_NEXT(elm, field) ((elm)->field.stqe_next)
  267. /*
  268. * Simple queue definitions.
  269. */
  270. #define SIMPLEQ_HEAD(name, type) \
  271. struct name { \
  272. struct type *sqh_first; /* first element */ \
  273. struct type **sqh_last; /* addr of last next element */ \
  274. }
  275. #define SIMPLEQ_HEAD_INITIALIZER(head) \
  276. { NULL, &(head).sqh_first }
  277. #define SIMPLEQ_ENTRY(type) \
  278. struct { \
  279. struct type *sqe_next; /* next element */ \
  280. }
  281. /*
  282. * Simple queue functions.
  283. */
  284. #define SIMPLEQ_INIT(head) do { \
  285. (head)->sqh_first = NULL; \
  286. (head)->sqh_last = &(head)->sqh_first; \
  287. } while (/*CONSTCOND*/0)
  288. #define SIMPLEQ_INSERT_HEAD(head, elm, field) do { \
  289. if (((elm)->field.sqe_next = (head)->sqh_first) == NULL) \
  290. (head)->sqh_last = &(elm)->field.sqe_next; \
  291. (head)->sqh_first = (elm); \
  292. } while (/*CONSTCOND*/0)
  293. #define SIMPLEQ_INSERT_TAIL(head, elm, field) do { \
  294. (elm)->field.sqe_next = NULL; \
  295. *(head)->sqh_last = (elm); \
  296. (head)->sqh_last = &(elm)->field.sqe_next; \
  297. } while (/*CONSTCOND*/0)
  298. #define SIMPLEQ_INSERT_AFTER(head, listelm, elm, field) do { \
  299. if (((elm)->field.sqe_next = (listelm)->field.sqe_next) == NULL)\
  300. (head)->sqh_last = &(elm)->field.sqe_next; \
  301. (listelm)->field.sqe_next = (elm); \
  302. } while (/*CONSTCOND*/0)
  303. #define SIMPLEQ_REMOVE_HEAD(head, field) do { \
  304. if (((head)->sqh_first = (head)->sqh_first->field.sqe_next) == NULL) \
  305. (head)->sqh_last = &(head)->sqh_first; \
  306. } while (/*CONSTCOND*/0)
  307. #define SIMPLEQ_REMOVE(head, elm, type, field) do { \
  308. if ((head)->sqh_first == (elm)) { \
  309. SIMPLEQ_REMOVE_HEAD((head), field); \
  310. } else { \
  311. struct type *curelm = (head)->sqh_first; \
  312. while (curelm->field.sqe_next != (elm)) \
  313. curelm = curelm->field.sqe_next; \
  314. if ((curelm->field.sqe_next = \
  315. curelm->field.sqe_next->field.sqe_next) == NULL) \
  316. (head)->sqh_last = &(curelm)->field.sqe_next; \
  317. } \
  318. } while (/*CONSTCOND*/0)
  319. #define SIMPLEQ_FOREACH(var, head, field) \
  320. for ((var) = ((head)->sqh_first); \
  321. (var); \
  322. (var) = ((var)->field.sqe_next))
  323. /*
  324. * Simple queue access methods.
  325. */
  326. #define SIMPLEQ_EMPTY(head) ((head)->sqh_first == NULL)
  327. #define SIMPLEQ_FIRST(head) ((head)->sqh_first)
  328. #define SIMPLEQ_NEXT(elm, field) ((elm)->field.sqe_next)
  329. /*
  330. * Tail queue definitions.
  331. */
  332. #define _TAILQ_HEAD(name, type, qual) \
  333. struct name { \
  334. qual type *tqh_first; /* first element */ \
  335. qual type *qual *tqh_last; /* addr of last next element */ \
  336. }
  337. #define TAILQ_HEAD(name, type) _TAILQ_HEAD(name, struct type,)
  338. #define TAILQ_HEAD_INITIALIZER(head) \
  339. { NULL, &(head).tqh_first }
  340. #define _TAILQ_ENTRY(type, qual) \
  341. struct { \
  342. qual type *tqe_next; /* next element */ \
  343. qual type *qual *tqe_prev; /* address of previous next element */\
  344. }
  345. #define TAILQ_ENTRY(type) _TAILQ_ENTRY(struct type,)
  346. /*
  347. * Tail queue functions.
  348. */
  349. #define TAILQ_INIT(head) do { \
  350. (head)->tqh_first = NULL; \
  351. (head)->tqh_last = &(head)->tqh_first; \
  352. } while (/*CONSTCOND*/0)
  353. #define TAILQ_INSERT_HEAD(head, elm, field) do { \
  354. if (((elm)->field.tqe_next = (head)->tqh_first) != NULL) \
  355. (head)->tqh_first->field.tqe_prev = \
  356. &(elm)->field.tqe_next; \
  357. else \
  358. (head)->tqh_last = &(elm)->field.tqe_next; \
  359. (head)->tqh_first = (elm); \
  360. (elm)->field.tqe_prev = &(head)->tqh_first; \
  361. } while (/*CONSTCOND*/0)
  362. #define TAILQ_INSERT_TAIL(head, elm, field) do { \
  363. (elm)->field.tqe_next = NULL; \
  364. (elm)->field.tqe_prev = (head)->tqh_last; \
  365. *(head)->tqh_last = (elm); \
  366. (head)->tqh_last = &(elm)->field.tqe_next; \
  367. } while (/*CONSTCOND*/0)
  368. #define TAILQ_INSERT_AFTER(head, listelm, elm, field) do { \
  369. if (((elm)->field.tqe_next = (listelm)->field.tqe_next) != NULL)\
  370. (elm)->field.tqe_next->field.tqe_prev = \
  371. &(elm)->field.tqe_next; \
  372. else \
  373. (head)->tqh_last = &(elm)->field.tqe_next; \
  374. (listelm)->field.tqe_next = (elm); \
  375. (elm)->field.tqe_prev = &(listelm)->field.tqe_next; \
  376. } while (/*CONSTCOND*/0)
  377. #define TAILQ_INSERT_BEFORE(listelm, elm, field) do { \
  378. (elm)->field.tqe_prev = (listelm)->field.tqe_prev; \
  379. (elm)->field.tqe_next = (listelm); \
  380. *(listelm)->field.tqe_prev = (elm); \
  381. (listelm)->field.tqe_prev = &(elm)->field.tqe_next; \
  382. } while (/*CONSTCOND*/0)
  383. #define TAILQ_REMOVE(head, elm, field) do { \
  384. if (((elm)->field.tqe_next) != NULL) \
  385. (elm)->field.tqe_next->field.tqe_prev = \
  386. (elm)->field.tqe_prev; \
  387. else \
  388. (head)->tqh_last = (elm)->field.tqe_prev; \
  389. *(elm)->field.tqe_prev = (elm)->field.tqe_next; \
  390. } while (/*CONSTCOND*/0)
  391. #define TAILQ_FOREACH(var, head, field) \
  392. for ((var) = ((head)->tqh_first); \
  393. (var); \
  394. (var) = ((var)->field.tqe_next))
  395. #define TAILQ_FOREACH_REVERSE(var, head, headname, field) \
  396. for ((var) = (*(((struct headname *)((head)->tqh_last))->tqh_last)); \
  397. (var); \
  398. (var) = (*(((struct headname *)((var)->field.tqe_prev))->tqh_last)))
  399. #define TAILQ_CONCAT(head1, head2, field) do { \
  400. if (!TAILQ_EMPTY(head2)) { \
  401. *(head1)->tqh_last = (head2)->tqh_first; \
  402. (head2)->tqh_first->field.tqe_prev = (head1)->tqh_last; \
  403. (head1)->tqh_last = (head2)->tqh_last; \
  404. TAILQ_INIT((head2)); \
  405. } \
  406. } while (/*CONSTCOND*/0)
  407. /*
  408. * Tail queue access methods.
  409. */
  410. #define TAILQ_EMPTY(head) ((head)->tqh_first == NULL)
  411. #define TAILQ_FIRST(head) ((head)->tqh_first)
  412. #define TAILQ_NEXT(elm, field) ((elm)->field.tqe_next)
  413. #define TAILQ_LAST(head, headname) \
  414. (*(((struct headname *)((head)->tqh_last))->tqh_last))
  415. #define TAILQ_PREV(elm, headname, field) \
  416. (*(((struct headname *)((elm)->field.tqe_prev))->tqh_last))
  417. /*
  418. * Circular queue definitions.
  419. */
  420. #define CIRCLEQ_HEAD(name, type) \
  421. struct name { \
  422. struct type *cqh_first; /* first element */ \
  423. struct type *cqh_last; /* last element */ \
  424. }
  425. #define CIRCLEQ_HEAD_INITIALIZER(head) \
  426. { (void *)&head, (void *)&head }
  427. #define CIRCLEQ_ENTRY(type) \
  428. struct { \
  429. struct type *cqe_next; /* next element */ \
  430. struct type *cqe_prev; /* previous element */ \
  431. }
  432. /*
  433. * Circular queue functions.
  434. */
  435. #define CIRCLEQ_INIT(head) do { \
  436. (head)->cqh_first = (void *)(head); \
  437. (head)->cqh_last = (void *)(head); \
  438. } while (/*CONSTCOND*/0)
  439. #define CIRCLEQ_INSERT_AFTER(head, listelm, elm, field) do { \
  440. (elm)->field.cqe_next = (listelm)->field.cqe_next; \
  441. (elm)->field.cqe_prev = (listelm); \
  442. if ((listelm)->field.cqe_next == (void *)(head)) \
  443. (head)->cqh_last = (elm); \
  444. else \
  445. (listelm)->field.cqe_next->field.cqe_prev = (elm); \
  446. (listelm)->field.cqe_next = (elm); \
  447. } while (/*CONSTCOND*/0)
  448. #define CIRCLEQ_INSERT_BEFORE(head, listelm, elm, field) do { \
  449. (elm)->field.cqe_next = (listelm); \
  450. (elm)->field.cqe_prev = (listelm)->field.cqe_prev; \
  451. if ((listelm)->field.cqe_prev == (void *)(head)) \
  452. (head)->cqh_first = (elm); \
  453. else \
  454. (listelm)->field.cqe_prev->field.cqe_next = (elm); \
  455. (listelm)->field.cqe_prev = (elm); \
  456. } while (/*CONSTCOND*/0)
  457. #define CIRCLEQ_INSERT_HEAD(head, elm, field) do { \
  458. (elm)->field.cqe_next = (head)->cqh_first; \
  459. (elm)->field.cqe_prev = (void *)(head); \
  460. if ((head)->cqh_last == (void *)(head)) \
  461. (head)->cqh_last = (elm); \
  462. else \
  463. (head)->cqh_first->field.cqe_prev = (elm); \
  464. (head)->cqh_first = (elm); \
  465. } while (/*CONSTCOND*/0)
  466. #define CIRCLEQ_INSERT_TAIL(head, elm, field) do { \
  467. (elm)->field.cqe_next = (void *)(head); \
  468. (elm)->field.cqe_prev = (head)->cqh_last; \
  469. if ((head)->cqh_first == (void *)(head)) \
  470. (head)->cqh_first = (elm); \
  471. else \
  472. (head)->cqh_last->field.cqe_next = (elm); \
  473. (head)->cqh_last = (elm); \
  474. } while (/*CONSTCOND*/0)
  475. #define CIRCLEQ_REMOVE(head, elm, field) do { \
  476. if ((elm)->field.cqe_next == (void *)(head)) \
  477. (head)->cqh_last = (elm)->field.cqe_prev; \
  478. else \
  479. (elm)->field.cqe_next->field.cqe_prev = \
  480. (elm)->field.cqe_prev; \
  481. if ((elm)->field.cqe_prev == (void *)(head)) \
  482. (head)->cqh_first = (elm)->field.cqe_next; \
  483. else \
  484. (elm)->field.cqe_prev->field.cqe_next = \
  485. (elm)->field.cqe_next; \
  486. } while (/*CONSTCOND*/0)
  487. #define CIRCLEQ_FOREACH(var, head, field) \
  488. for ((var) = ((head)->cqh_first); \
  489. (var) != (const void *)(head); \
  490. (var) = ((var)->field.cqe_next))
  491. #define CIRCLEQ_FOREACH_REVERSE(var, head, field) \
  492. for ((var) = ((head)->cqh_last); \
  493. (var) != (const void *)(head); \
  494. (var) = ((var)->field.cqe_prev))
  495. /*
  496. * Circular queue access methods.
  497. */
  498. #define CIRCLEQ_EMPTY(head) ((head)->cqh_first == (void *)(head))
  499. #define CIRCLEQ_FIRST(head) ((head)->cqh_first)
  500. #define CIRCLEQ_LAST(head) ((head)->cqh_last)
  501. #define CIRCLEQ_NEXT(elm, field) ((elm)->field.cqe_next)
  502. #define CIRCLEQ_PREV(elm, field) ((elm)->field.cqe_prev)
  503. #define CIRCLEQ_LOOP_NEXT(head, elm, field) \
  504. (((elm)->field.cqe_next == (void *)(head)) \
  505. ? ((head)->cqh_first) \
  506. : (elm->field.cqe_next))
  507. #define CIRCLEQ_LOOP_PREV(head, elm, field) \
  508. (((elm)->field.cqe_prev == (void *)(head)) \
  509. ? ((head)->cqh_last) \
  510. : (elm->field.cqe_prev))
  511. #endif /* sys/queue.h */