Important: The information in this document is obsolete and should not be used for new development.
Routines
The Queue Utilities provide two routines:Enqueue
andDequeue
. TheEnqueue
procedure allows you to add queue elements directly to an operating-system queue, and theDequeue
function allows you to remove the element. Ordinarily, these routines are used only by system software. If possible, you should manipulate an operating-system queue indirectly, by calling special-purpose routines. For example, to install a task record into a slot-based vertical retrace queue, your application should use theSlotVInstall
function (provided by the Vertical Retrace Manager) instead of theEnqueue
procedure. In addition, you can use the Queue Utilities routines for directly manipulating queues that you create.