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

⟦ab38a4a8a⟧ TextFile

    Length: 1303 (0x517)
    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.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;