Ignore:
Timestamp:
Sep 25, 2000, 12:47:41 AM (25 years ago)
Author:
hugh
Message:

Added ID tags

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 $
    12/* A queue definition based on sys/queue.h TAILQ definitions
    2  * 
     3 *
    34 * Blame any implementation mistakes on Peter Hunnisett
    45 * <hunnise@nortelnetworks.com>
     
    4041
    4142/* 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 )
    4344
    4445/* Next entry -- FIXME: Convert everything over to this macro ... */
     
    7374 * fieldToCompare - The value that we're comparing against
    7475 * fieldCompareOperator - The logical operator to compare field and
    75  *                        fieldToCompare. 
     76 *                        fieldToCompare.
    7677 * rc - Variable to put the return code. Same type as (head).lpQHFirst
    7778 */
     
    116117} while(0)
    117118
    118 /* Delete the entire queue 
     119/* Delete the entire queue
    119120 * head - pointer to the head of the queue
    120121 * field - field to access the next elements of the queue
Note: See TracChangeset for help on using the changeset viewer.