queue.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571
  1. /*
  2. * Copyright (c) 1991, 1993
  3. * The Regents of the University of California. All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. * 4. Neither the name of the University nor the names of its contributors
  14. * may be used to endorse or promote products derived from this software
  15. * without specific prior written permission.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  18. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  19. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  20. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  21. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  22. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  23. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  24. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  25. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  26. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  27. * SUCH DAMAGE.
  28. *
  29. * @(#)queue.h 8.5 (Berkeley) 8/20/94
  30. * $FreeBSD: src/sys/sys/queue.h,v 1.58 2004/04/07 04:19:49 imp Exp $
  31. */
  32. #if !defined(__NetBSD__)
  33. #ifndef _SYS_QUEUE_H_
  34. #define _SYS_QUEUE_H_
  35. /*
  36. * This file defines four types of data structures: singly-linked lists,
  37. * singly-linked tail queues, lists and tail queues.
  38. *
  39. * A singly-linked list is headed by a single forward pointer. The elements
  40. * are singly linked for minimum space and pointer manipulation overhead at
  41. * the expense of O(n) removal for arbitrary elements. New elements can be
  42. * added to the list after an existing element or at the head of the list.
  43. * Elements being removed from the head of the list should use the explicit
  44. * macro for this purpose for optimum efficiency. A singly-linked list may
  45. * only be traversed in the forward direction. Singly-linked lists are ideal
  46. * for applications with large datasets and few or no removals or for
  47. * implementing a LIFO queue.
  48. *
  49. * A singly-linked tail queue is headed by a pair of pointers, one to the
  50. * head of the list and the other to the tail of the list. The elements are
  51. * singly linked for minimum space and pointer manipulation overhead at the
  52. * expense of O(n) removal for arbitrary elements. New elements can be added
  53. * to the list after an existing element, at the head of the list, or at the
  54. * end of the list. Elements being removed from the head of the tail queue
  55. * should use the explicit macro for this purpose for optimum efficiency.
  56. * A singly-linked tail queue may only be traversed in the forward direction.
  57. * Singly-linked tail queues are ideal for applications with large datasets
  58. * and few or no removals or for implementing a FIFO queue.
  59. *
  60. * A list is headed by a single forward pointer (or an array of forward
  61. * pointers for a hash table header). The elements are doubly linked
  62. * so that an arbitrary element can be removed without a need to
  63. * traverse the list. New elements can be added to the list before
  64. * or after an existing element or at the head of the list. A list
  65. * may only be traversed in the forward direction.
  66. *
  67. * A tail queue is headed by a pair of pointers, one to the head of the
  68. * list and the other to the tail of the list. The elements are doubly
  69. * linked so that an arbitrary element can be removed without a need to
  70. * traverse the list. New elements can be added to the list before or
  71. * after an existing element, at the head of the list, or at the end of
  72. * the list. A tail queue may be traversed in either direction.
  73. *
  74. * For details on the use of these macros, see the queue(3) manual page.
  75. *
  76. *
  77. * SLIST LIST STAILQ TAILQ
  78. * _HEAD + + + +
  79. * _HEAD_INITIALIZER + + + +
  80. * _ENTRY + + + +
  81. * _INIT + + + +
  82. * _EMPTY + + + +
  83. * _FIRST + + + +
  84. * _NEXT + + + +
  85. * _PREV - - - +
  86. * _LAST - - + +
  87. * _FOREACH + + + +
  88. * _FOREACH_SAFE + + + +
  89. * _FOREACH_REVERSE - - - +
  90. * _FOREACH_REVERSE_SAFE - - - +
  91. * _INSERT_HEAD + + + +
  92. * _INSERT_BEFORE - + - +
  93. * _INSERT_AFTER + + + +
  94. * _INSERT_TAIL - - + +
  95. * _CONCAT - - + +
  96. * _REMOVE_HEAD + - + -
  97. * _REMOVE + + + +
  98. *
  99. */
  100. #define QUEUE_MACRO_DEBUG 0
  101. #if QUEUE_MACRO_DEBUG
  102. /* Store the last 2 places the queue element or head was altered */
  103. struct qm_trace {
  104. char *lastfile;
  105. int lastline;
  106. char *prevfile;
  107. int prevline;
  108. };
  109. #define TRACEBUF struct qm_trace trace;
  110. #define TRASHIT(x) do {(x) = (void *)NULL; } while (0)
  111. #define QMD_TRACE_HEAD(head) do { \
  112. (head)->trace.prevline = (head)->trace.lastline; \
  113. (head)->trace.prevfile = (head)->trace.lastfile; \
  114. (head)->trace.lastline = __LINE__; \
  115. (head)->trace.lastfile = __FILE__; \
  116. } while (0)
  117. #define QMD_TRACE_ELEM(elem) do { \
  118. (elem)->trace.prevline = (elem)->trace.lastline; \
  119. (elem)->trace.prevfile = (elem)->trace.lastfile; \
  120. (elem)->trace.lastline = __LINE__; \
  121. (elem)->trace.lastfile = __FILE__; \
  122. } while (0)
  123. #else
  124. #define QMD_TRACE_ELEM(elem)
  125. #define QMD_TRACE_HEAD(head)
  126. #define TRACEBUF
  127. #define TRASHIT(x) do {(x) = (void *)0; } while (0)
  128. #endif /* QUEUE_MACRO_DEBUG */
  129. #ifdef ATHR_RNWF
  130. /* NDIS contains a defn for SLIST_ENTRY and SINGLE_LIST_ENTRY */
  131. #endif
  132. /*
  133. * Singly-linked List declarations.
  134. */
  135. #define SLIST_HEAD(name, type) \
  136. struct name { \
  137. struct type *slh_first; /* first element */ \
  138. }
  139. #define SLIST_HEAD_INITIALIZER(head) \
  140. { NULL }
  141. #define SING_LIST_ENTRY(type) \
  142. struct { \
  143. struct type *sle_next; /* next element */ \
  144. }
  145. /*
  146. * Singly-linked List functions.
  147. */
  148. #define SLIST_EMPTY(head) ((head)->slh_first == NULL)
  149. #define SLIST_FIRST(head) ((head)->slh_first)
  150. #define SLIST_FOREACH(var, head, field) \
  151. for ((var) = SLIST_FIRST((head)); \
  152. (var); \
  153. (var) = SLIST_NEXT((var), field))
  154. #define SLIST_FOREACH_SAFE(var, head, field, tvar) \
  155. for ((var) = SLIST_FIRST((head)); \
  156. (var) && ((tvar) = SLIST_NEXT((var), field), 1); \
  157. (var) = (tvar))
  158. #define SLIST_FOREACH_PREVPTR(var, varp, head, field) \
  159. for ((varp) = &SLIST_FIRST((head)); \
  160. ((var) = *(varp)) != NULL; \
  161. (varp) = &SLIST_NEXT((var), field))
  162. #define SLIST_INIT(head) do { \
  163. SLIST_FIRST((head)) = NULL; \
  164. } while (0)
  165. #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \
  166. SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \
  167. SLIST_NEXT((slistelm), field) = (elm); \
  168. } while (0)
  169. #define SLIST_INSERT_HEAD(head, elm, field) do { \
  170. SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \
  171. SLIST_FIRST((head)) = (elm); \
  172. } while (0)
  173. #define SLIST_NEXT(elm, field) ((elm)->field.sle_next)
  174. #define SLIST_REMOVE(head, elm, type, field) do { \
  175. if (SLIST_FIRST((head)) == (elm)) { \
  176. SLIST_REMOVE_HEAD((head), field); \
  177. } \
  178. else { \
  179. struct type *curelm = SLIST_FIRST((head)); \
  180. while (SLIST_NEXT(curelm, field) != (elm)) \
  181. curelm = SLIST_NEXT(curelm, field); \
  182. SLIST_NEXT(curelm, field) = \
  183. SLIST_NEXT(SLIST_NEXT(curelm, field), field); \
  184. } \
  185. } while (0)
  186. #define SLIST_REMOVE_HEAD(head, field) do { \
  187. SLIST_FIRST((head)) = SLIST_NEXT(SLIST_FIRST((head)), field); \
  188. } while (0)
  189. /*
  190. * Singly-linked Tail queue declarations.
  191. */
  192. #define STAILQ_HEAD(name, type) \
  193. struct name { \
  194. struct type *stqh_first; /* first element */ \
  195. struct type **stqh_last; /* addr of last next element */ \
  196. }
  197. #define STAILQ_HEAD_INITIALIZER(head) \
  198. { NULL, &(head).stqh_first }
  199. #define STAILQ_ENTRY(type) \
  200. struct { \
  201. struct type *stqe_next; /* next element */ \
  202. }
  203. /*
  204. * Singly-linked Tail queue functions.
  205. */
  206. #define STAILQ_CONCAT(head1, head2) do { \
  207. if (!STAILQ_EMPTY((head2))) { \
  208. *(head1)->stqh_last = (head2)->stqh_first; \
  209. (head1)->stqh_last = (head2)->stqh_last; \
  210. STAILQ_INIT((head2)); \
  211. } \
  212. } while (0)
  213. #define STAILQ_EMPTY(head) ((head)->stqh_first == NULL)
  214. #define STAILQ_FIRST(head) ((head)->stqh_first)
  215. #define STAILQ_FOREACH(var, head, field) \
  216. for((var) = STAILQ_FIRST((head)); \
  217. (var); \
  218. (var) = STAILQ_NEXT((var), field))
  219. #define STAILQ_FOREACH_SAFE(var, head, field, tvar) \
  220. for ((var) = STAILQ_FIRST((head)); \
  221. (var) && ((tvar) = STAILQ_NEXT((var), field), 1); \
  222. (var) = (tvar))
  223. #define STAILQ_INIT(head) do { \
  224. STAILQ_FIRST((head)) = NULL; \
  225. (head)->stqh_last = &STAILQ_FIRST((head)); \
  226. } while (0)
  227. #define STAILQ_INSERT_AFTER(head, tqelm, elm, field) do { \
  228. if ((STAILQ_NEXT((elm), field) = STAILQ_NEXT((tqelm), field)) == NULL) \
  229. (head)->stqh_last = &STAILQ_NEXT((elm), field); \
  230. STAILQ_NEXT((tqelm), field) = (elm); \
  231. } while (0)
  232. #define STAILQ_INSERT_HEAD(head, elm, field) do { \
  233. if ((STAILQ_NEXT((elm), field) = STAILQ_FIRST((head))) == NULL) \
  234. (head)->stqh_last = &STAILQ_NEXT((elm), field); \
  235. STAILQ_FIRST((head)) = (elm); \
  236. } while (0)
  237. #define STAILQ_INSERT_TAIL(head, elm, field) do { \
  238. STAILQ_NEXT((elm), field) = NULL; \
  239. *(head)->stqh_last = (elm); \
  240. (head)->stqh_last = &STAILQ_NEXT((elm), field); \
  241. } while (0)
  242. #define STAILQ_LAST(head, type, field) \
  243. (STAILQ_EMPTY((head)) ? \
  244. NULL : \
  245. ((struct type *) \
  246. ((char *)((head)->stqh_last) - __offsetof(struct type, field))))
  247. #define STAILQ_NEXT(elm, field) ((elm)->field.stqe_next)
  248. #define STAILQ_REMOVE(head, elm, type, field) do { \
  249. if (STAILQ_FIRST((head)) == (elm)) { \
  250. STAILQ_REMOVE_HEAD((head), field); \
  251. } \
  252. else { \
  253. struct type *curelm = STAILQ_FIRST((head)); \
  254. while (STAILQ_NEXT(curelm, field) != (elm)) \
  255. curelm = STAILQ_NEXT(curelm, field); \
  256. if ((STAILQ_NEXT(curelm, field) = \
  257. STAILQ_NEXT(STAILQ_NEXT(curelm, field), field)) == NULL) \
  258. (head)->stqh_last = &STAILQ_NEXT((curelm), field); \
  259. } \
  260. } while (0)
  261. #define STAILQ_REMOVE_AFTER(head, elm, field) do { \
  262. if (STAILQ_NEXT(elm, field)) { \
  263. if ((STAILQ_NEXT(elm, field) = \
  264. STAILQ_NEXT(STAILQ_NEXT(elm, field), field)) == NULL) \
  265. (head)->stqh_last = &STAILQ_NEXT((elm), field); \
  266. } \
  267. } while (0)
  268. #define STAILQ_REMOVE_HEAD(head, field) do { \
  269. if ((STAILQ_FIRST((head)) = \
  270. STAILQ_NEXT(STAILQ_FIRST((head)), field)) == NULL) \
  271. (head)->stqh_last = &STAILQ_FIRST((head)); \
  272. } while (0)
  273. #define STAILQ_REMOVE_HEAD_UNTIL(head, elm, field) do { \
  274. if ((STAILQ_FIRST((head)) = STAILQ_NEXT((elm), field)) == NULL) \
  275. (head)->stqh_last = &STAILQ_FIRST((head)); \
  276. } while (0)
  277. /*
  278. * List declarations.
  279. */
  280. #define ATH_LIST_HEAD(name, type) \
  281. struct name { \
  282. struct type *lh_first; /* first element */ \
  283. }
  284. #ifndef LIST_HEAD
  285. #define LIST_HEAD ATH_LIST_HEAD
  286. #endif
  287. #define LIST_HEAD_INITIALIZER(head) \
  288. { NULL }
  289. #define LIST_ENTRY(type) \
  290. struct { \
  291. struct type *le_next; /* next element */ \
  292. struct type **le_prev; /* address of previous next element */ \
  293. }
  294. /*
  295. * List functions.
  296. */
  297. #define LIST_EMPTY(head) ((head)->lh_first == NULL)
  298. #define LIST_FIRST(head) ((head)->lh_first)
  299. #define LIST_FOREACH(var, head, field) \
  300. for ((var) = LIST_FIRST((head)); \
  301. (var); \
  302. (var) = LIST_NEXT((var), field))
  303. #define LIST_FOREACH_SAFE(var, head, field, tvar) \
  304. for ((var) = LIST_FIRST((head)); \
  305. (var) && ((tvar) = LIST_NEXT((var), field), 1); \
  306. (var) = (tvar))
  307. #define LIST_INIT(head) do { \
  308. LIST_FIRST((head)) = NULL; \
  309. } while (0)
  310. #define LIST_INSERT_AFTER(listelm, elm, field) do { \
  311. if ((LIST_NEXT((elm), field) = LIST_NEXT((listelm), field)) != NULL) \
  312. LIST_NEXT((listelm), field)->field.le_prev = \
  313. &LIST_NEXT((elm), field); \
  314. LIST_NEXT((listelm), field) = (elm); \
  315. (elm)->field.le_prev = &LIST_NEXT((listelm), field); \
  316. } while (0)
  317. #define LIST_INSERT_BEFORE(listelm, elm, field) do { \
  318. (elm)->field.le_prev = (listelm)->field.le_prev; \
  319. LIST_NEXT((elm), field) = (listelm); \
  320. *(listelm)->field.le_prev = (elm); \
  321. (listelm)->field.le_prev = &LIST_NEXT((elm), field); \
  322. } while (0)
  323. #define LIST_INSERT_HEAD(head, elm, field) do { \
  324. if ((LIST_NEXT((elm), field) = LIST_FIRST((head))) != NULL) \
  325. LIST_FIRST((head))->field.le_prev = &LIST_NEXT((elm), field); \
  326. LIST_FIRST((head)) = (elm); \
  327. (elm)->field.le_prev = &LIST_FIRST((head)); \
  328. } while (0)
  329. #define LIST_NEXT(elm, field) ((elm)->field.le_next)
  330. #define LIST_REMOVE(elm, field) do { \
  331. if (LIST_NEXT((elm), field) != NULL) \
  332. LIST_NEXT((elm), field)->field.le_prev = \
  333. (elm)->field.le_prev; \
  334. *(elm)->field.le_prev = LIST_NEXT((elm), field); \
  335. } while (0)
  336. /*
  337. * Tail queue declarations.
  338. */
  339. #define HEADNAME
  340. #define COPY_HEADNAME(head)
  341. #define TAILQ_HEAD(name, type) \
  342. struct name { \
  343. struct type *tqh_first; /* first element */ \
  344. struct type **tqh_last; /* addr of last next element */ \
  345. HEADNAME \
  346. TRACEBUF \
  347. }
  348. #define TAILQ_HEAD_INITIALIZER(head) \
  349. { NULL, &(head).tqh_first }
  350. #define TAILQ_ENTRY(type) \
  351. struct { \
  352. struct type *tqe_next; /* next element */ \
  353. struct type **tqe_prev; /* address of previous next element */ \
  354. TRACEBUF \
  355. }
  356. /*
  357. * Tail queue functions.
  358. */
  359. #define TAILQ_EMPTY(head) ((head)->tqh_first == NULL)
  360. #define TAILQ_FIRST(head) ((head)->tqh_first)
  361. #define TAILQ_FOREACH(var, head, field) \
  362. for ((var) = TAILQ_FIRST((head)); \
  363. (var); \
  364. (var) = TAILQ_NEXT((var), field))
  365. #define TAILQ_FOREACH_SAFE(var, head, field, tvar) \
  366. for ((var) = TAILQ_FIRST((head)); \
  367. (var) && ((tvar) = TAILQ_NEXT((var), field), 1); \
  368. (var) = (tvar))
  369. #define TAILQ_FOREACH_REVERSE(var, head, headname, field) \
  370. for ((var) = TAILQ_LAST((head), headname); \
  371. (var); \
  372. (var) = TAILQ_PREV((var), headname, field))
  373. #define TAILQ_FOREACH_REVERSE_SAFE(var, head, headname, field, tvar) \
  374. for ((var) = TAILQ_LAST((head), headname); \
  375. (var) && ((tvar) = TAILQ_PREV((var), headname, field), 1); \
  376. (var) = (tvar))
  377. #define TAILQ_INIT(head) do { \
  378. TAILQ_FIRST((head)) = NULL; \
  379. (head)->tqh_last = &TAILQ_FIRST((head)); \
  380. COPY_HEADNAME(head); \
  381. QMD_TRACE_HEAD(head); \
  382. } while (0)
  383. #define TAILQ_INSERT_AFTER(head, listelm, elm, field) do { \
  384. if ((TAILQ_NEXT((elm), field) = TAILQ_NEXT((listelm), field)) != NULL) \
  385. TAILQ_NEXT((elm), field)->field.tqe_prev = \
  386. &TAILQ_NEXT((elm), field); \
  387. else { \
  388. (head)->tqh_last = &TAILQ_NEXT((elm), field); \
  389. QMD_TRACE_HEAD(head); \
  390. } \
  391. TAILQ_NEXT((listelm), field) = (elm); \
  392. (elm)->field.tqe_prev = &TAILQ_NEXT((listelm), field); \
  393. QMD_TRACE_ELEM(&(elm)->field); \
  394. QMD_TRACE_ELEM(&listelm->field); \
  395. } while (0)
  396. #define TAILQ_INSERT_BEFORE(listelm, elm, field) do { \
  397. (elm)->field.tqe_prev = (listelm)->field.tqe_prev; \
  398. TAILQ_NEXT((elm), field) = (listelm); \
  399. *(listelm)->field.tqe_prev = (elm); \
  400. (listelm)->field.tqe_prev = &TAILQ_NEXT((elm), field); \
  401. QMD_TRACE_ELEM(&(elm)->field); \
  402. QMD_TRACE_ELEM(&listelm->field); \
  403. } while (0)
  404. #define TAILQ_INSERT_HEAD(head, elm, field) do { \
  405. if ((TAILQ_NEXT((elm), field) = TAILQ_FIRST((head))) != NULL) \
  406. TAILQ_FIRST((head))->field.tqe_prev = \
  407. &TAILQ_NEXT((elm), field); \
  408. else \
  409. (head)->tqh_last = &TAILQ_NEXT((elm), field); \
  410. TAILQ_FIRST((head)) = (elm); \
  411. (elm)->field.tqe_prev = &TAILQ_FIRST((head)); \
  412. QMD_TRACE_HEAD(head); \
  413. QMD_TRACE_ELEM(&(elm)->field); \
  414. } while (0)
  415. #define TAILQ_INSERT_TAIL(head, elm, field) do { \
  416. TAILQ_NEXT((elm), field) = NULL; \
  417. (elm)->field.tqe_prev = (head)->tqh_last; \
  418. *(head)->tqh_last = (elm); \
  419. (head)->tqh_last = &TAILQ_NEXT((elm), field); \
  420. QMD_TRACE_HEAD(head); \
  421. QMD_TRACE_ELEM(&(elm)->field); \
  422. } while (0)
  423. #define TAILQ_LAST(head, headname) \
  424. (*(((struct headname *)((head)->tqh_last))->tqh_last))
  425. #define TAILQ_NEXT(elm, field) ((elm)->field.tqe_next)
  426. #define TAILQ_PREV(elm, headname, field) \
  427. (*(((struct headname *)((elm)->field.tqe_prev))->tqh_last))
  428. #define TAILQ_REMOVE(head, elm, field) do { \
  429. if ((TAILQ_NEXT((elm), field)) != NULL) \
  430. TAILQ_NEXT((elm), field)->field.tqe_prev = \
  431. (elm)->field.tqe_prev; \
  432. else { \
  433. (head)->tqh_last = (elm)->field.tqe_prev; \
  434. QMD_TRACE_HEAD(head); \
  435. } \
  436. *(elm)->field.tqe_prev = TAILQ_NEXT((elm), field); \
  437. TRASHIT((elm)->field.tqe_next); \
  438. TRASHIT((elm)->field.tqe_prev); \
  439. QMD_TRACE_ELEM(&(elm)->field); \
  440. } while (0)
  441. #define TAILQ_CONCAT(head1, head2, field) do { \
  442. if (!TAILQ_EMPTY(head2)) { \
  443. *(head1)->tqh_last = (head2)->tqh_first; \
  444. (head2)->tqh_first->field.tqe_prev = (head1)->tqh_last; \
  445. (head1)->tqh_last = (head2)->tqh_last; \
  446. TAILQ_INIT((head2)); \
  447. } \
  448. } while (0)
  449. #ifdef _KERNEL
  450. /*
  451. * XXX insque() and remque() are an old way of handling certain queues.
  452. * They bogusly assumes that all queue heads look alike.
  453. */
  454. struct quehead {
  455. struct quehead *qh_link;
  456. struct quehead *qh_rlink;
  457. };
  458. #if defined(__GNUC__) || defined(__INTEL_COMPILER)
  459. static __inline void insque(void *a, void *b)
  460. {
  461. struct quehead *element = (struct quehead *)a,
  462. *head = (struct quehead *)b;
  463. element->qh_link = head->qh_link;
  464. element->qh_rlink = head;
  465. head->qh_link = element;
  466. element->qh_link->qh_rlink = element;
  467. }
  468. static __inline void remque(void *a)
  469. {
  470. struct quehead *element = (struct quehead *)a;
  471. element->qh_link->qh_rlink = element->qh_rlink;
  472. element->qh_rlink->qh_link = element->qh_link;
  473. element->qh_rlink = 0;
  474. }
  475. #else /* !(__GNUC__ || __INTEL_COMPILER) */
  476. void insque(void *a, void *b);
  477. void remque(void *a);
  478. #endif /* __GNUC__ || __INTEL_COMPILER */
  479. #endif /* _KERNEL */
  480. #endif /* !_SYS_QUEUE_H_ */
  481. #else /* !__NetBSD__ */
  482. #include_next <sys/queue.h>
  483. #endif /* __NetBSD__ */