1.2.12.4.14 SRV_QUEUE_ELEMENT Struct

C

typedef struct SRV_QUEUE_ELEMENT_tag
{
    /* Pointer to the previous object of the queue */
    struct SRV_QUEUE_ELEMENT_tag *prev;

    /* Pointer to the next object of the queue */
    struct SRV_QUEUE_ELEMENT_tag *next;

    /* Element priority (only with priority queues) */  
    uint32_t priority;
} SRV_QUEUE_ELEMENT;

Summary

Queue element.

Description

This structure contains the data stored in each queue element.