Important: The information in this document is obsolete and should not be used for new development.
OTLIFOEnqueue
Places a link at the front of a LIFO list.C INTERFACE
void OTLIFOEnqueue (OTLIFO* list, OTLink* link)C++ INTERFACE
None. C++ applications use the C interface to this function.PARAMETERS
list
- A pointer to the list structure in which the entry specified by the
link
parameter is to be placed.link
- A pointer to the
link
being placed in the list.DISCUSSION
This function atomically queues the entry referenced by thelink
parameter at the front of the list referenced by thelist
parameter.Use the
OTLIFODequeue
function to remove a link from a LIFO list.