SELKIELogger
1.0.0
|
#include <queue.h>
Public Attributes | |
msg_t * | item |
Queued message. | |
queueitem * | next |
Pointer to next item, or NULL for queue tail. | |
If *next is NULL, it will be assumed that this item is the end of the queue.
Messages pointed to by queueitem.item "belong" to the queue until popped, when they are then the responsibility of queue_pop()'s caller. Messages pointed to by queueitem.item must be dynamically allocated.