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

⟦93d1308b8⟧ TextFile

    Length: 804 (0x324)
    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 (Compilation_Unit)
procedure Get_Block_Name (Out_Name : out Program_Unit_Name) is
    --===============================================================
    -- Get_Block_Name gets the next label for unnamed block. This  ==
    -- label will contain a UNIQUE number; the label format is     ==
    -- "UNNAMED_BLOCK_xxx" where xxx is a UNIQUE positive number.  ==
    --===============================================================

    Next_Block_Name : constant String :=
       "UNNAMED_BLOCK_" & Positive'Image (Current_Block_Id);

begin
    -- Get_Block_Name

    Out_Name := (Length => Next_Block_Name'Length, Value => Next_Block_Name);

    -- Current_Block_ID is a state variable in package
    -- COMPILATION_UNIT body.
    Current_Block_Id := Current_Block_Id + 1;

end Get_Block_Name;