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

⟦b00834769⟧ TextFile

    Length: 1410 (0x582)
    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 Library;
with Scheduler;
with Access_List;

procedure Initialize_Housekeeping is
begin
    Library.Destroy (Existing => "!Machine.Temporary??",
                     Threshold => Natural'Last,
                     Limit => "<All_Worlds>",
                     Response => "<Errors>");
    Library.Create_World
       ("!Machine.Temporary", Model => "", Response => "<Errors>");
    Library.Set_Retention_Count
       ("!Machine.Temporary", 0, Response => "<Errors>");
    Access_List.Set ("Network_Public => Rwcd", "!Machine.Temporary",
                     Response => "<Errors>");
    Access_List.Set_Default ("Network_Public => Rwcd", "!Machine.Temporary",
                             Response => "<Errors>");  
    Library.Compact_Library ("!Machine.Error_Logs");
    Library.Compact_Library ("!Machine.Queues.??'C(World)");

    Scheduler.Set ("Background_Streams", 3);
    Scheduler.Set ("Stream_Time 1", 2);
    Scheduler.Set ("Stream_Time 2", 58);
    Scheduler.Set ("Stream_Jobs 1", 3);
    Scheduler.Set ("Foreground_Time_Limit", 300);
    Scheduler.Set ("Max_Detached_Wsl", 5000);
    Scheduler.Set ("Max_Attached_Wsl", 4000);
    Scheduler.Set ("Min_Ce_Wsl", 150);
    Scheduler.Set ("Max_Ce_Wsl", 500);
    Scheduler.Set ("Min_Oe_Wsl", 75);
    Scheduler.Set ("Max_Oe_Wsl", 750);
    Scheduler.Set ("Min_Server_Wsl", 75);
    Scheduler.Set ("Disk_Scheduling", 0);
end Initialize_Housekeeping;