Insert a node at the head of a list
Source position: exec.pas line 1181
procedure AddHead( |
list: pList; |
node: pNode |
); |
list |
|
Pointer to list to which the node should be inserted |
node |
|
Pointer to node to insert |
This function inserts a node at the head of the list. The node will be the first node in the list after this function.
WARNING
This function does not arbitrate for access to the list. The calling task must be the owner of the involved list.
|
Insert a node into a list |
|
|
Remove a node from a list |
|
|
Remove the head node from a list |
|
|
Append node to tail of a list |
|
|
Remove the tail node from a list |
|
|
Insert or append node to a system list |