Find a node in a system list by name
Source position: exec.pas line 1764
| function FindName( | 
| Start: PList; | 
| const Name: PChar | 
| ):PNode; | 
| Name | 
 | Node name to find in the list | 
A pointer to the node with the same name else nil to indicate that the string was not found.
Search a system list for a node with the given name. To find multiple occurrences of a string, this function may be called with a different node starting point.
No arbitration is done for access to the list! If multiple tasks access the same list, an arbitration mechanism such as SignalSemaphores must be used.