2 * Copyright (c) 2000-2005 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
32 * Mach Operating System
33 * Copyright (c) 1991,1990,1989,1988,1987 Carnegie Mellon University
34 * All Rights Reserved.
36 * Permission to use, copy, modify and distribute this software and its
37 * documentation is hereby granted, provided that both the copyright
38 * notice and this permission notice appear in all copies of the
39 * software, derivative works or modified versions, and any portions
40 * thereof, and that both notices appear in supporting documentation.
42 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
43 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
44 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
46 * Carnegie Mellon requests users of this software to return to
48 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
49 * School of Computer Science
50 * Carnegie Mellon University
51 * Pittsburgh PA 15213-3890
53 * any improvements or extensions that they make and grant Carnegie Mellon rights
54 * to redistribute these changes.
60 * Author: Avadis Tevanian, Jr.
63 * Type definitions for generic queues.
67 #ifndef _KERN_QUEUE_H_
68 #define _KERN_QUEUE_H_
70 #include <mach/mach_types.h>
71 #include <kern/macro_help.h>
74 * Queue of abstract objects. Queue is maintained
77 * Supports fast removal from within the queue.
79 * How to declare a queue of elements of type "foo_t":
80 * In the "*foo_t" type, you must have a field of
81 * type "queue_chain_t" to hold together this queue.
82 * There may be more than one chain through a
83 * "foo_t", for use by different queues.
85 * Declare the queue as a "queue_t" type.
87 * Elements of the queue (of type "foo_t", that is)
88 * are referred to by reference, and cast to type
89 * "queue_entry_t" within this module.
93 * A generic doubly-linked list (queue).
97 struct queue_entry
*next
; /* next element */
98 struct queue_entry
*prev
; /* previous element */
101 typedef struct queue_entry
*queue_t
;
102 typedef struct queue_entry queue_head_t
;
103 typedef struct queue_entry queue_chain_t
;
104 typedef struct queue_entry
*queue_entry_t
;
107 * enqueue puts "elt" on the "queue".
108 * dequeue returns the first element in the "queue".
109 * remqueue removes the specified "elt" from the specified "queue".
112 #define enqueue(queue,elt) enqueue_tail(queue, elt)
113 #define dequeue(queue) dequeue_head(queue)
115 #if !defined(__GNUC__)
117 #include <sys/cdefs.h>
120 /* Enqueue element to head of queue */
121 extern void enqueue_head(
125 /* Enqueue element to tail of queue */
126 extern void enqueue_tail(
130 /* Dequeue element from head of queue */
131 extern queue_entry_t
dequeue_head(
134 /* Dequeue element from tail of queue */
135 extern queue_entry_t
dequeue_tail(
138 /* Dequeue element */
139 extern void remqueue(
143 /* Enqueue element after a particular elem */
148 /* Dequeue element */
154 #else /* !__GNUC__ */
156 static __inline__
void
161 elt
->next
= que
->next
;
163 elt
->next
->prev
= elt
;
167 static __inline__
void
173 elt
->prev
= que
->prev
;
174 elt
->prev
->next
= elt
;
178 static __inline__ queue_entry_t
182 register queue_entry_t elt
= (queue_entry_t
) 0;
184 if (que
->next
!= que
) {
186 elt
->next
->prev
= que
;
187 que
->next
= elt
->next
;
193 static __inline__ queue_entry_t
197 register queue_entry_t elt
= (queue_entry_t
) 0;
199 if (que
->prev
!= que
) {
201 elt
->prev
->next
= que
;
202 que
->prev
= elt
->prev
;
208 static __inline__
void
210 __unused queue_t que
,
213 elt
->next
->prev
= elt
->prev
;
214 elt
->prev
->next
= elt
->next
;
217 static __inline__
void
222 entry
->next
= pred
->next
;
224 (pred
->next
)->prev
= entry
;
228 static __inline__ integer_t
230 register queue_entry_t elt
)
232 (elt
->next
)->prev
= elt
->prev
;
233 (elt
->prev
)->next
= elt
->next
;
235 return((integer_t
)elt
);
238 #endif /* !__GNUC__ */
243 * Initialize the given queue.
246 * queue_t q; \* MODIFIED *\
248 #define queue_init(q) \
257 * Returns the first entry in the queue,
259 * queue_entry_t queue_first(q)
260 * queue_t q; \* IN *\
262 #define queue_first(q) ((q)->next)
267 * Returns the entry after an item in the queue.
269 * queue_entry_t queue_next(qc)
272 #define queue_next(qc) ((qc)->next)
277 * Returns the last entry in the queue.
279 * queue_entry_t queue_last(q)
280 * queue_t q; \* IN *\
282 #define queue_last(q) ((q)->prev)
287 * Returns the entry before an item in the queue.
289 * queue_entry_t queue_prev(qc)
292 #define queue_prev(qc) ((qc)->prev)
297 * Tests whether a new entry is really the end of
300 * boolean_t queue_end(q, qe)
304 #define queue_end(q, qe) ((q) == (qe))
309 * Tests whether a queue is empty.
311 * boolean_t queue_empty(q)
314 #define queue_empty(q) queue_end((q), queue_first(q))
317 /*----------------------------------------------------------------*/
319 * Macros that operate on generic structures. The queue
320 * chain may be at any location within the structure, and there
321 * may be more than one chain.
327 * Insert a new element at the tail of the queue.
329 * void queue_enter(q, elt, type, field)
332 * <type> is what's in our queue
333 * <field> is the chain field in (*<type>)
335 #define queue_enter(head, elt, type, field) \
337 register queue_entry_t __prev; \
339 __prev = (head)->prev; \
340 if ((head) == __prev) { \
341 (head)->next = (queue_entry_t) (elt); \
344 ((type)__prev)->field.next = (queue_entry_t)(elt);\
346 (elt)->field.prev = __prev; \
347 (elt)->field.next = head; \
348 (head)->prev = (queue_entry_t) elt; \
352 * Macro: queue_enter_first
354 * Insert a new element at the head of the queue.
356 * void queue_enter_first(q, elt, type, field)
359 * <type> is what's in our queue
360 * <field> is the chain field in (*<type>)
362 #define queue_enter_first(head, elt, type, field) \
364 register queue_entry_t __next; \
366 __next = (head)->next; \
367 if ((head) == __next) { \
368 (head)->prev = (queue_entry_t) (elt); \
371 ((type)__next)->field.prev = (queue_entry_t)(elt);\
373 (elt)->field.next = __next; \
374 (elt)->field.prev = head; \
375 (head)->next = (queue_entry_t) elt; \
379 * Macro: queue_insert_before
381 * Insert a new element before a given element.
383 * void queue_insert_before(q, elt, cur, type, field)
387 * <type> is what's in our queue
388 * <field> is the chain field in (*<type>)
390 #define queue_insert_before(head, elt, cur, type, field) \
392 register queue_entry_t __prev; \
394 if ((head) == (queue_entry_t)(cur)) { \
395 (elt)->field.next = (head); \
396 if ((head)->next == (head)) { /* only element */ \
397 (elt)->field.prev = (head); \
398 (head)->next = (queue_entry_t)(elt); \
399 } else { /* last element */ \
400 __prev = (elt)->field.prev = (head)->prev; \
401 ((type)__prev)->field.next = (queue_entry_t)(elt);\
403 (head)->prev = (queue_entry_t)(elt); \
405 (elt)->field.next = (queue_entry_t)(cur); \
406 if ((head)->next == (queue_entry_t)(cur)) { \
407 /* first element */ \
408 (elt)->field.prev = (head); \
409 (head)->next = (queue_entry_t)(elt); \
410 } else { /* middle element */ \
411 __prev = (elt)->field.prev = (cur)->field.prev; \
412 ((type)__prev)->field.next = (queue_entry_t)(elt);\
414 (cur)->field.prev = (queue_entry_t)(elt); \
419 * Macro: queue_insert_after
421 * Insert a new element after a given element.
423 * void queue_insert_after(q, elt, cur, type, field)
427 * <type> is what's in our queue
428 * <field> is the chain field in (*<type>)
430 #define queue_insert_after(head, elt, cur, type, field) \
432 register queue_entry_t __next; \
434 if ((head) == (queue_entry_t)(cur)) { \
435 (elt)->field.prev = (head); \
436 if ((head)->next == (head)) { /* only element */ \
437 (elt)->field.next = (head); \
438 (head)->prev = (queue_entry_t)(elt); \
439 } else { /* first element */ \
440 __next = (elt)->field.next = (head)->next; \
441 ((type)__next)->field.prev = (queue_entry_t)(elt);\
443 (head)->next = (queue_entry_t)(elt); \
445 (elt)->field.prev = (queue_entry_t)(cur); \
446 if ((head)->prev == (queue_entry_t)(cur)) { \
448 (elt)->field.next = (head); \
449 (head)->prev = (queue_entry_t)(elt); \
450 } else { /* middle element */ \
451 __next = (elt)->field.next = (cur)->field.next; \
452 ((type)__next)->field.prev = (queue_entry_t)(elt);\
454 (cur)->field.next = (queue_entry_t)(elt); \
459 * Macro: queue_field [internal use only]
461 * Find the queue_chain_t (or queue_t) for the
462 * given element (thing) in the given queue (head)
464 #define queue_field(head, thing, type, field) \
465 (((head) == (thing)) ? (head) : &((type)(thing))->field)
468 * Macro: queue_remove
470 * Remove an arbitrary item from the queue.
472 * void queue_remove(q, qe, type, field)
473 * arguments as in queue_enter
475 #define queue_remove(head, elt, type, field) \
477 register queue_entry_t __next, __prev; \
479 __next = (elt)->field.next; \
480 __prev = (elt)->field.prev; \
482 if ((head) == __next) \
483 (head)->prev = __prev; \
485 ((type)__next)->field.prev = __prev; \
487 if ((head) == __prev) \
488 (head)->next = __next; \
490 ((type)__prev)->field.next = __next; \
494 * Macro: queue_remove_first
496 * Remove and return the entry at the head of
499 * queue_remove_first(head, entry, type, field)
500 * entry is returned by reference
502 #define queue_remove_first(head, entry, type, field) \
504 register queue_entry_t __next; \
506 (entry) = (type) ((head)->next); \
507 __next = (entry)->field.next; \
509 if ((head) == __next) \
510 (head)->prev = (head); \
512 ((type)(__next))->field.prev = (head); \
513 (head)->next = __next; \
517 * Macro: queue_remove_last
519 * Remove and return the entry at the tail of
522 * queue_remove_last(head, entry, type, field)
523 * entry is returned by reference
525 #define queue_remove_last(head, entry, type, field) \
527 register queue_entry_t __prev; \
529 (entry) = (type) ((head)->prev); \
530 __prev = (entry)->field.prev; \
532 if ((head) == __prev) \
533 (head)->next = (head); \
535 ((type)(__prev))->field.next = (head); \
536 (head)->prev = __prev; \
540 * Macro: queue_assign
542 #define queue_assign(to, from, type, field) \
544 ((type)((from)->prev))->field.next = (to); \
545 ((type)((from)->next))->field.prev = (to); \
550 * Macro: queue_new_head
552 * rebase old queue to new queue head
554 * queue_new_head(old, new, type, field)
557 * <type> is what's in our queue
558 * <field> is the chain field in (*<type>)
560 #define queue_new_head(old, new, type, field) \
562 if (!queue_empty(old)) { \
564 ((type)((new)->next))->field.prev = (new); \
565 ((type)((new)->prev))->field.next = (new); \
572 * Macro: queue_iterate
574 * iterate over each item in the queue.
575 * Generates a 'for' loop, setting elt to
576 * each item in turn (by reference).
578 * queue_iterate(q, elt, type, field)
581 * <type> is what's in our queue
582 * <field> is the chain field in (*<type>)
584 #define queue_iterate(head, elt, type, field) \
585 for ((elt) = (type) queue_first(head); \
586 !queue_end((head), (queue_entry_t)(elt)); \
587 (elt) = (type) queue_next(&(elt)->field))
589 #ifdef MACH_KERNEL_PRIVATE
591 #include <kern/lock.h>
593 /*----------------------------------------------------------------*/
595 * Define macros for queues with locks.
597 struct mpqueue_head
{
598 struct queue_entry head
; /* header for queue */
599 decl_simple_lock_data(, lock
) /* lock for queue */
602 typedef struct mpqueue_head mpqueue_head_t
;
604 #define round_mpq(size) (size)
606 #define mpqueue_init(q) \
608 queue_init(&(q)->head); \
609 simple_lock_init(&(q)->lock, 0); \
612 #define mpenqueue_tail(q, elt) \
614 simple_lock(&(q)->lock); \
615 enqueue_tail(&(q)->head, elt); \
616 simple_unlock(&(q)->lock); \
619 #define mpdequeue_head(q, elt) \
621 simple_lock(&(q)->lock); \
622 if (queue_empty(&(q)->head)) \
625 *(elt) = dequeue_head(&(q)->head); \
626 simple_unlock(&(q)->lock); \
629 #endif /* MACH_KERNEL_PRIVATE */
631 #endif /* _KERN_QUEUE_H_ */