-
Notifications
You must be signed in to change notification settings - Fork 29
Closed
Labels
Description
The Get_Module_Schedule_Property returns a Schedule_Window_Record_Term_Array
which has the following definition
type Schedule_Window_Record_Term is record
Partition : Name_Id;
Duration : Time_Type;
Periodic_Processing_Start : Boolean;
end record;
However, the partition part should be a node id with a reference to the partition instead of a name_id. This is a semantic error and it is not possible to solely rely on the name: looking for a subcomponent with this name in the component hierarchy is confusing because several sub-components can have this name.
Thus, it would be better to put a Node_Id and reference the existing referenced component.