unit MachineInfo:function:NodeInfo
This function returns full information about all connected Virtual
Processors. Information is given as a list of NodeInfo
structures.
The NodeInfo structure is defined in the class Machine
as follow:
unit NodeInfo:class;
var num:integer, (* an ID of a Virtual Processor *)
addr:arrayof char (* IP address of a VLP *)
next:NodeInfo (* next structure on the list *)
end NodeInfo;