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

⟦1b09aa377⟧ TextFile

    Length: 1397 (0x575)
    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.Milestone_Pkg)

--*****************************************************************************
procedure Change_Ms_In_El (Ms_Record : in Milestone_Pointer;
                           New_Number : in Ms_Num_Type) is
    -----------------------------------------------------------------------------
    --|
    --|  NAME: CHANGE_MS_IN_EL
    --|
    --|  OVERVIEW:
    --|    This procedure is called when a milestone is deleted from or modified
    --|    in the milestone list.  Before either of these actions can be taken,
    --|    the element list that contains milestones with the same number is
    --|    walked.  This list is a field of the milestone data record.
    --|    The milestone number field of each element record is reassigned
    --|    the new milestone number.
    --|
    --|  EXCEPTIONS HANDLED:
    --|    none
    --|
    --|  HISTORY:
    --|    written by   May Lee   March 1985
    --|
    -----------------------------------------------------------------------------
    El_Record : Element_Pointer;   -- ms element list
    End_List : Boolean;

begin
    -- change the ms number field in el_record of the milestone's el list
    Start_Walk (Ms_Record.Element_List);

    loop
        Walk (Ms_Record.Element_List, El_Record, End_List);
        exit when End_List;
        El_Record.Milestone_Num := New_Number;
    end loop;
end Change_Ms_In_El;