Append node to tail of a list
Source position: exec.pas line 1878
procedure AddTail( |
list: PList; |
node: PNode |
); |
list |
|
Pointer to the target list |
node |
|
Pointer to the Node to be added |
Add a node to the tail of a list. The Node will be the last node in the list.
WARNING
This function does not arbitrate for access to the list. The calling task must be the owner of the involved list.