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

⟦1246eb5a2⟧ TextFile

    Length: 1114 (0x45a)
    Types: TextFile
    Names: »B«

Derivation

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

TextFile

separate (Batch_Extensions_Support)
procedure Generate_Context_Change_Command
             (Host_File_Id : Io.File_Type;
              Current_Object : Directory.Object;
              Target_Key : String;
              Status : in out Simple_Status.Condition) is
    -- Generate a command to set context on the target

    Remote_Directory : constant Li.String_Result :=
       Li.Remote_Directory
          (Naming.Get_Full_Name (Du.Get_View (Current_Object, Profile.Get)),
           Profile.Get);
begin
    if Simple_Status.Error (Remote_Directory.Condition) then
        Log.Put_Line ("Error in getting remote directory name for unit " &
                      Naming.Unique_Full_Name (Current_Object),
                      Profile.Error_Msg);
        Status := Remote_Directory.Condition;
    end if;

    declare  
        Context_Command : constant String :=
           Tdi.Build_Context_Command (Target_Key, Remote_Directory.Result, "");
    begin
        if Context_Command /= "" then
            Io.Put_Line (Host_File_Id, Context_Command);
        end if;
    end;
end Generate_Context_Change_Command;