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 - download
Index: ┃ B T

⟦66b61af55⟧ TextFile

    Length: 645 (0x285)
    Types: TextFile
    Names: »B«

Derivation

└─⟦25882cbde⟧ Bits:30000536 8mm tape, Rational 1000, RCI_RS6000_AIX_IBM 2_0_2
    └─ ⟦b8efda8ac⟧ »DATA« 
        └─⟦7061b4ee8⟧ 
            └─⟦this⟧ 

TextFile

with Job;
with Log;
with Profile;
with All_Extensions;
procedure Register_All_Extensions (Target_Key_Name : String := "Rs6000") is
    Library_Integration : constant String :=
       Target_Key_Name & "Library_Integration";
begin  
    All_Extensions.Register (Target_Key_Name);
    loop  
        delay Duration'Last;
    end loop;
exception
    when others =>
        Log.Put_Line (Message => "The RCI is not elaborated",
                      Kind => Profile.Negative_Msg);
        Log.Put_Line (Message => "Registration of Library Extension Failed",
                      Kind => Profile.Error_Msg);
end Register_All_Extensions;
pragma Main;