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

⟦df4bdb8bf⟧ TextFile

    Length: 1137 (0x471)
    Types: TextFile
    Names: »B«

Derivation

└─⟦149519bd4⟧ Bits:30000546 8mm tape, Rational 1000, !projects 93-07-13
    └─ ⟦124ff5788⟧ »DATA« 
        └─⟦this⟧ 
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦6d381756c⟧ 
└─⟦f64eaa120⟧ Bits:30000752 8mm tape, Rational 1000, !projects 93 02 16
    └─ ⟦6f12a12be⟧ »DATA« 
        └─⟦6d381756c⟧ 
└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04
    └─ ⟦d65440be7⟧ »DATA« 
        └─⟦6d381756c⟧ 
            └─⟦this⟧ 
└─⟦f64eaa120⟧ Bits:30000752 8mm tape, Rational 1000, !projects 93 02 16
    └─ ⟦6f12a12be⟧ »DATA« 
        └─⟦this⟧ 

TextFile

with Log;
with Profile;
with Remote_Operations;
with Simple_Status;
procedure Exec (Command : String := "";
                On_Host : String := ">>HOSTNAME<<";
                Response : String := "<VERBOSE>") is
    package Ro renames Remote_Operations;
    Context : Ro.Context;
    Status : Ro.Error_Status;
    procedure Check (Status : Ro.Error_Status) is
    begin
        if Simple_Status.Error (Status) then
            Log.Put_Condition (Status);
            raise Profile.Error;
        end if;
    end Check;
begin
    Ro.Acquire (A_Context => Context,
                Status => Status,
                Machine => On_Host,
                Instance => "");
    Check (Status);
    Ro.Execute (Command => Command,
                In_Context => Context,
                Status => Status,
                Timeout => Remote_Operations.Wait_Forever);
    Check (Status);
    Ro.Release (A_Context => Context,
                Status => Status,
                Idle_Timeout => Remote_Operations.Default);
    Check (Status);
    delay 15.0;
exception
    when Profile.Error =>
        null;
    when others =>
        raise;
end Exec;