Changeset 4317 for trunk/src/DPlayX/dplayx_queue.h
- Timestamp:
- Sep 25, 2000, 12:47:41 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/DPlayX/dplayx_queue.h
r4314 r4317 1 // $Id: dplayx_queue.h,v 1.2 2000-09-24 22:47:39 hugh Exp $ 1 2 /* A queue definition based on sys/queue.h TAILQ definitions 2 * 3 * 3 4 * Blame any implementation mistakes on Peter Hunnisett 4 5 * <hunnise@nortelnetworks.com> … … 40 41 41 42 /* Check if the queue has any elements */ 42 #define DPQ_IS_EMPTY( head ) ( DPQ_FIRST(head) == NULL ) 43 #define DPQ_IS_EMPTY( head ) ( DPQ_FIRST(head) == NULL ) 43 44 44 45 /* Next entry -- FIXME: Convert everything over to this macro ... */ … … 73 74 * fieldToCompare - The value that we're comparing against 74 75 * fieldCompareOperator - The logical operator to compare field and 75 * fieldToCompare. 76 * fieldToCompare. 76 77 * rc - Variable to put the return code. Same type as (head).lpQHFirst 77 78 */ … … 116 117 } while(0) 117 118 118 /* Delete the entire queue 119 /* Delete the entire queue 119 120 * head - pointer to the head of the queue 120 121 * field - field to access the next elements of the queue
Note:
See TracChangeset
for help on using the changeset viewer.