|
|
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: 1038 (0x40e)
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.Manipulate_Data.Group_Data_Fixes)
procedure Update_Original is
--------------------------------------------------------------------------------
--|
--| NAME: UPDATE_ORIGINAL
--|
--| OVERVIEW:
--| This procedure walks through the element data and for each element
--| sets the original size estimate equal to the current size estimate.
--|
--| EXCEPTIONS HANDLED:
--| others an error message is printed and execution continues
--|
--| HISTORY:
--| written by Bonnie Burkhardt March 1985
--------------------------------------------------------------------------------
use El_List_Pkg;
El_Ptr : Element_Pointer;
End_List : Boolean := False;
begin
Start_Walk (El_List);
loop
Walk (El_List, El_Ptr, End_List);
exit when End_List;
El_Ptr.Original_Size := El_Ptr.Current_Size;
end loop;
exception
when others =>
Put_Line ("exception raised in UPDATE_ORIGINAL.");
end Update_Original;