r6.0.0:lfds600_queue_guaranteed_enqueue
Jump to navigation
Jump to search
Source Files
/liblfds600/src/lfds600_queue/lfds600_queue_queue.c /liblfds600/inc/liblfds600.h
Prototype
int lfds600_queue_guaranteed_enqueue( struct lfds600_queue_state *qs, void *user_data );
Parameters
struct lfds600_queue_state *qs
- A queue state as allocated by lfds600_queue_new.
void *user_data
- A void pointer of user data which will be queued into the queue.
Return Value
Returns 1 on a successful enqueue. Returns 0 if enqueing failed. Enqueuing only fails if malloc fails.
Notes
The function lfds600_queue_enqueue fails only when the queue's freelist is empty. In this event, lfds600_queue_guaranteed_push can be called, which allocates a new element and enqueues using that new element, thus guaranteeing an enqueue, barring the event of malloc failure.