DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: B T

⟦d7449a2f9⟧ TextFile

    Length: 1038 (0x40e)
    Types: TextFile
    Names: »B«

Derivation

└─⟦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⟧ 

TextFile

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;