r6.1.1:lfds611_queue_dequeue
Jump to navigation
Jump to search
Source Files
/liblfds611/src/lfds611_queue/lfds611_queue_queue.c /liblfds611/inc/liblfds611.h
Prototype
int lfds611_queue_dequeue( struct lfds611_queue_state *qs, void **user_data );
Parameters
struct lfds611_queue_state *qs
- A queue state as allocated by lfds611_queue_new.
void **user_data
- The address of a pointer into which the user data will be placed. On an unsuccessful dequeue (which occurs if and only if the queue is empty), *user_data is not modified, as NULL is a valid user data value.
Return Value
Returns 1 if an element was dequeued, returns 0 if an element was no dequeued. The queue being empty is the only situation in which dequeuing does not occur. Note that on an unsuccessful dequeue, *user_data is untouched; it is not set to NULL, since NULL is a valid user data value. Only the return value indicates whether or not the dequeue was successful.
Notes
No notes.