|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: B T
Length: 1303 (0x517)
Types: TextFile
Names: »B«
└─⟦180fe333a⟧ Bits:30000405 8mm tape, Rational 1000, SW CATALOG, 10_20_0
└─⟦180fe333a⟧ Bits:30000537 8mm tape, Rational 1000, SW Catalog 10_20_0
└─⟦5cb1d1d7f⟧ »DATA«
└─⟦3b1ee7bd8⟧
└─⟦this⟧
separate (Tracker.Subsystem_Pkg)
procedure Change_Ss_In_El (Ss_Record : in Subsystem_Pointer;
New_Name : in Ss_Name_Type) is
-----------------------------------------------------------------------------
--|
--| NAME: CHANGE_SS_IN_EL
--|
--| OVERVIEW:
--| This procedure is called when a subsystem is deleted from or modified
--| in the subsystem list. Before either of these actions can be taken,
--| the element list that contains subsystems with the same name is walked.
--| This list is a field of the subsystem data record.
--| The subsystem name field of each element record is reassigned
--| the new subsystem.
--|
--| EXCEPTIONS HANDLED:
--| none
--|
--| HISTORY:
--| Written by May Lee March 1985
--|
-----------------------------------------------------------------------------
El_Record : Element_Pointer; -- ms element list
End_List : Boolean;
begin
-- change the ss name field in el_record of the subsystem's el list
Start_Walk (Ss_Record.Element_List);
loop
Walk (Ss_Record.Element_List, El_Record, End_List);
exit when End_List;
El_Record.Subsystem_Name := New_Name;
end loop;
end Change_Ss_In_El;