Enqueue(list, node)
void Enqueue(struct List *, struct Node *);
Insert or append a node into a system queue. The insertion is performed based on the node priority. It will keep the list properly sorted. New nodes will be inserted in front of the first node with a lower priority. Hence a FIFO queue for nodes of equal priority
This function does not arbitrate for access to the list. The calling task must be the owner of the involved list.