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

⟦7dc6a33a2⟧ TextFile

    Length: 1948 (0x79c)
    Types: TextFile
    Names: »B«

Derivation

└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦458657fb6⟧ 
            └─⟦274c33adf⟧ 
└─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3
    └─ ⟦fc9b38f02⟧ »DATA« 
        └─⟦9b46a407a⟧ 
            └─⟦274c33adf⟧ 
                └─⟦this⟧ 

TextFile

with Activity;
with Debug_Tools;
with Error_Reporting;
with Io;
with Log;
with Profile;
with Library;
with Program;
with Operator;
with Link_Tools;
with Compilation;

procedure Initialize is
begin
    Io.Set_Output ("!Machine.Error_Logs.Machine_Initialize");
    Io.Set_Error (Io.Current_Output);
    Activity.Set ("!Machine.Release.Current.Activity");

    Operator.Enable_Privileges;

    if not Operator.Privileged_Mode then
        Log.Put_Line ("Could not enable privileges.",
                      Kind => Profile.Error_Msg);
    end if;

    Library.Context ("!Machine.Error_Logs");

    Program.Run ("""!Machine"".Initialize_Housekeeping;");
    Program.Run ("""!Machine"".Initialize_Daemons;");
    Program.Run ("""!Machine"".Initialize_Network;");

    if Link_Tools.Has ("Install_Subsystems", "?",
                       Link_Tools.External, "!Machine") then
        begin
            Program.Run
               ("""!Machine'L.Install_Subsystems$"".Install_Subsystems;");
        exception
            when others =>
                null;
        end;
    end if;

    Library.Context ("!Machine.Error_Logs");

    Program.Run ("""!Commands"".Gateway_Class.Boot_Time_Initialization");
    Program.Run ("""!Machine"".Initialize_Terminals;");
    Program.Run ("""!Machine"".Initialize_Servers;");
    Program.Run ("""!Machine"".Initialize_Print_Spooler;");
    Program.Run ("""!Machine"".Initialize_Site;");
    Program.Run ("""!Machine"".Initialize_Mail;");
    Program.Run ("""!Machine"".Initialize_Cross_Compilers;");
    Program.Run ("""!Machine"".Initialize_Design_Facilities;");

    Io.Reset_Output;
exception
    when others =>
        Error_Reporting.Report_Error
           (Caller => "!Machine.Initialize",
            Reason => Error_Reporting.Create_Condition_Name
                         ("Unhandled_Exception", Error_Reporting.Fatal),
            Explanation => Debug_Tools.Get_Exception_Name (True, True));
end Initialize;